This value is already in use for this value set

Valueset Error: This value is already in use for this value set [ID 787827.1] 

Cause
A translated value is missing from the FND_FLEX_VALUES_TL table.
Solution
Ensure there is a corresponding row for each installed language in the FND_FLEX_VALUES_TL and FND_FLEX_VALUES table:

a. Get the flex_value_set for the value set:

Select FLEX_VALUE_SET_ID
from FND_FLEX_VALUE_SETS
where FLEX_VALUE_SET_NAME =' ';

b. Display the values in that value set:

Select FLEX_VALUE_ID, FLEX_VALUE, ENABLED_FLAG
from FND_FLEX_VALUES
where FLEX_VALUE_SET_ID =
;


c. Display the corresponding rows in FND_FLEX_VALUES_TL for the values found in step b. Substitute the FLEX_VALUE_IDs returned in step b in the selection list below:

select language, description
from FND_FLEX_VALUES_TL
where FLEX_VALUE_ID in (,
,
);

d. There should be a corresponding row returned in step c for each value in step b, for each installed language. If not, then run the following to populate the FND_FLEX_VALUES_TL table:

Using adadmin please run Maintain multi-lingual tables:

- Menu Option 4 Maintain Applications Database Entities Menu
- Menu Option 3 Maintain multi-lingual tables

as we run the following query, the data missed in FND_FLEX_VALUES_TL

 

Select * --FLEX_VALUE_SET_ID
from apps.fND_FLEX_VALUE_SETS
where
-- FLEX_VALUE_SET_ID=1012807  ---
FLEX_VALUE_SET_NAME  like '
%';


 Select FLEX_VALUE_ID, FLEX_VALUE, ENABLED_FLAG
from apps.FND_FLEX_VALUES
where FLEX_VALUE_SET_ID =
1012787   and flex_value=

 select *
from apps.FND_FLEX_VALUES_TL
where FLEX_VALUE_ID in
(
301380);-- (301402, 139361, 301381)

 

来自 “ ITPUB博客 ” ,链接:http://blog.itpub.net/15225049/viewspace-721070/,如需转载,请注明出处,否则将追究法律责任。

转载于:http://blog.itpub.net/15225049/viewspace-721070/

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值