壹佰网|ERP100 - 企业信息化知识门户

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 1750|回复: 2

[供应链] APP-FND-01050 then APP-FND-00730(删除自动会计类型的解决办法)

[复制链接]
发表于 2011/10/21 13:53:29 | 显示全部楼层 |阅读模式

马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622  。

您需要 登录 才可以下载或查看,没有帐号?注册

x
The Override Value field is greyed out, or you receive errors when
clicking on the Override Value button on Define Columns Set form.

APP-FND-01050: This flexfield cannot be opened because it has no
displayed segments. Please contact your system administrator.
Modify your flexfield definition to display one or more segments.
This may also be caused by incorrect use of the DISPLAY= token to
the flexfield user exits in the form. In that case, please contact
your support representative.

Click on OK button on Error Window and following message displayed.

APP-FND-00730: This flexfield has an invalid value set. It may use a
special value set that uses an Edit event user exit, and the user
exit has failed. If you are using a form on a graphical user
interface (GUI) you may have an invalid value set of a different
type, possibly a table-validated value set where the table or view
does not exist or where there is an invalid WHERE clause. Contact
your system administrator or support representative to check and
correct the value sets this flexfield uses.

Enter the Override Segment first, then the Override Value.

46_122275_1131958570.gif

59_122275_1131959979.gif

icon_logo.png 该贴已经同步到 纵横四海的微博

 楼主| 发表于 2011/10/21 13:55:11 | 显示全部楼层
pplies to: Oracle Receivables - Version: 11.5.9
This problem can occur on any platform.
FORM:RAXSUAGL - Define Automatic Accounting SymptomsYou get the following errors when trying to setup AutoAccounting:

APP-FND-01050 This flexfield cannot be opened because it has no displayed segments. Please contact your system administrator.

Modify your flexfield definition to display one or more segments. This may also be caused by incorrect use of the Display=token to the flexfield user exits in the form. In that case please contact your support representative.
.
When clicked on OK, it further throws the following error message:
APP-FND-00730: This flexfield has an invalid value set

Example:
You are able to define AutoAccounting in one ORG and not in another.
You are able to define other AutoAccounting accounts but not Freight.
The Freight account record appears to have been saved with no account segments.
You have defined segments for location flexfield but in vain.
CauseThe issue here could be that at some point probably the record in RA_ACCOUNT_DEFAULTS_ALL was saved, without saving the associated records in RA_ACCOUNT_DEFAULT_SEGMENTS.

SolutionRun the following sqls:

-- check for the available orgs
select organization_id, name from HR_ORGANIZATION_UNITS;

-- check the details with combination of gl_default_id and type for the particular org
select gl_default_id, type, org_id from RA_ACCOUNT_DEFAULTS_ALL;

-- check for the segments, if the necessary and defined values are available or not.
select rad.type, rads.segment, rads.table_name
from RA_ACCOUNT_DEFAULT_SEGMENTS rads,
RA_ACCOUNT_DEFAULTS_ALL rad
where rads.gl_default_id = rad.gl_default_id
and rad.org_id = &org_id;

You need to provide the org_id, in which the error occurs. From the output of the above query, check if the necessary segments are returned, for the corrupt account type. If the values are missing, then it implies that, for the record in the table RA_ACCOUNT_DEFAULTS_ALL, there are no corresponding entries in the table RA_ACCOUNT_DEFAULT_SEGMENTS_ALL. Hence, the suggested option is to delete the associated record from the table RA_ACCOUNT_DEFAULTS_ALL after taking a backup of the same.

Example:
create table ra_account_defaults_all_bak as
select * from ra_account_defaults_all;

delete from ra_account_defaults_all
where gl_default_id = 1015;

commit;
.
Now re-query the account type concerned, in the AutoAccounting form to check if the system allows you to enter. If you still have an issue, kindly log a service request with Oracle Support.

点评

这是删除自动会计类型的解决办法  发表于 2011/10/21 13:55
发表于 2011/10/21 13:57:56 | 显示全部楼层
try:
1. Go into the responsibility: System administrator
2. Navigate to Application > Flexfields > Key > Segments > query the Position flexfield, Human Resources application > click on the structure that was set up for your business group
3. Click Segments > set up at least one segment > make sure the Enabled and Displayed check boxes are checked > Save > check the 'Allow dynamic inserts' box > freeze the flexfield definition > compile the flexfield
您需要登录后才可以回帖 登录 | 注册

本版积分规则

QQ|Archiver|小黑屋|手机版|壹佰网 ERP100 ( 京ICP备19053597号-2 )

Copyright © 2005-2012 北京海之大网络技术有限责任公司 服务器托管由互联互通
手机:13911575376
网站技术点击发送消息给对方83569622   广告&合作 点击发送消息给对方27675401   点击发送消息给对方634043306   咨询及人才点击发送消息给对方138011526

GMT+8, 2025/11/30 12:33 , Processed in 0.026462 second(s), 23 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

快速回复 返回顶部 返回列表