|
|
马上注册,结交更多好友,享用更多功能,让你轻松玩转社区。如果您注册时有任何问题请联系客服QQ: 83569622 。
您需要 登录 才可以下载或查看,没有帐号?注册
x
AP和FA的设置都没有问题,但是就是导入不成功。
我查了metalink,和如下的情况类似:
fact: Oracle Payables 11.5
fact: FAMCR - Mass Additions Create
symptom: Asset Invoice Line Distributions is Imported thru Mass Addition
Process
Unable to find the Invoice in mass Addition Report
symptom: Asset_additions_flag = 'N' which means Rejected
cause: The output of Query stated that asset_additions_flag = 'N' which
means Rejected
This need to be changed to 'U' for successful transfer of Invoice line to Assets
fix:
Fix
----
Following are the conditions for ASSET Invoice Line Distributions to be
Imported:
a) The line is charged to an account set up as an Asset account.
b) The account is set up for an existing Asset Category as either the Asset
Clearing Account or the CIP Clearing Account.
c) The Track as Asset check box is checked. (It is automatically checked
if the account is an Asset account).
d) The invoice is approved.
e) The invoice line distribution is posted to Oracle General Ledger from
Payables.
f) The General Ledger date on the invoice line distribution is on or before
the date you specify for the FAMACR program.
To be picked up for Mass Additions, the following settings are required against
the line in the ap_invoice_distributions_all table:
assets_tracking_flag = 'Y'
asset_additions_flag = 'U' (U = Untested, Y = Accepted, N = Rejected)
posted_flag = 'Y'
accounting_date = ? (must be <= to the date entered when running
the FAMACR process)
Run the following SQL Script for the problem Invoice, which will provide the
information about the status of Invoice line, if eligible for transfer and
further transfered to Assets
SQL> select assets_addition_flag, assets_tracking_flag, posted_flag
from ap_invoice_distributions_all where
invoice_id = <<invoice ID>>;
If a line is Rejected in the Mass Addition process, the status of column
asset_additions_flag will be 'N' and that need to be changed to 'U'.
For datafix, please log a TAR in Oracle support - Select apid.accounting_date,
- apid.assets_tracking_flag,
- apid.assets_addition_flag,
- apid.posted_flag,
- apid.set_of_books_id,
- glcc.chart_of_accounts_id,
- glcc.account_type,
- apid.invoice_id
- from ap_invoice_distributions_all apid, gl_code_combinations glcc
- where invoice_id = 63354
- and glcc.code_combination_id = apid.dist_code_combination_id
复制代码 |
-
|