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

 找回密码
 注册

QQ登录

只需一步,快速开始

查看: 3631|回复: 0

[财务] APP-FND-00730, APP-FND-01050 之解决办法

[复制链接]
发表于 2007/3/22 00:32:02 | 显示全部楼层 |阅读模式

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

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

x
这个错误是在 form 界面设置的时候,出现的问题!metalink 的解决办法


Applies 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.

ReferencesBug 661694 - Autoaccounting Segment Receivable Does Not Show Data
Note 161259.1 - Cannot Define AutoAccounting for Tax - Errors APP-FND-01050, APP-FND-00730
ErrorsAPP-FND-1050
APP-FND-730
您需要登录后才可以回帖 登录 | 注册

本版积分规则

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

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

GMT+8, 2025/11/30 12:45 , Processed in 0.013210 second(s), 16 queries , File On.

Powered by Discuz! X3.4

Copyright © 2001-2020, Tencent Cloud.

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