Blogs
R12 - XLA - What are the replacement reports for 11i - AX?
Submitted by vamsi kasina on Sun, 2009-06-07 11:34
AX (11i) SLA (R12)
Daily Journal Book - Line Descriptions Payables/Receivables/Inventory Journal Entries Report Daily Journal Book - Header Descriptions Payables/Receivables/Inventory Journal Entries Report Final Daily Journal Book - Header Descriptions Journal Entries Report Italian Journal Book Journal Entries Report
- vamsi kasina's blog
- Login to post comments
- Read more
R12 - GL / XLA - Drilldown from GL is not consistently opening in OA pages
Submitted by vamsi kasina on Sun, 2009-06-07 11:06
Sometimes Drilldown from GL will open OA pages and sometimes Oracle Forms.
Here is the reason:
- When the data is from 11i and not upgraded to R12 (means it is not in XLA tables and gl_je_headers.je_from_sla_flag is NULL), then it will open the subledger form directly.
- When the data is from R12 or from 11i and upgraded to R12 (means it is in XLA tables and gl_je_headers.je_from_sla_flag is 'Y' or 'U'), then it will open the SLA OA page first, so that we can check the XLA data and we can open the subledger form through View Transactions button.
- vamsi kasina's blog
- Login to post comments
- Read more
11i - AX - Unable to submit AX Posting Manager/Post Transactions?
Submitted by vamsi kasina on Sun, 2009-06-07 04:46
If the following error occurs while submitting AX Posting Manager/Post Transactions, then set the profile options, AX Application Name and GL Set of Books Name.
Which will automatically set the other two profiles.

The following are the important profile options, which need to be set to submit AX Posting Manager/Post Transactions.
- AX Application Id
- AX Application Name
- GL Set of Books ID
- GL Set of Books Name
- vamsi kasina's blog
- Login to post comments
11i - AX - Why Customer/Supplier Merge is erring out?
Submitted by vamsi kasina on Sun, 2009-06-07 04:16
From AX User Guide,
The Global Accounting Engine does not support the following actions during a Customer or Supplier Merge because they violate reconciliation principles ensured by Global Accounting Engine reports:
- Deleting a customer after a merge.
- Creating accounting entries after a multiple merge.
- Merging unsuccessfully, such as a merge in Payables where only some of the invoices have been merged.
- Merging suppliers, when the new supplier site code already exists in another organization that has the same set of books ID.
- vamsi kasina's blog
- Login to post comments
- Read more
R12 - GL / XLA / FAH - How to disable Create Reporting Sequence Number (which used to run when a period is closed in GL)?
Submitted by vamsi kasina on Sun, 2009-06-07 04:00
Note that if Create Reporting Sequence Number is disabled, Reporting Sequences will not be generated in GL/SLA.
1. Log in as sysadmin user.
2. Choose the responsibility Workflow Administrator Web Applications.
3. Select the page Business Events.
4. Search for "oracle.apps.gl.CloseProcess.period.close" (enter this in the name field and press Go).
5. Click on Subscription
6. Update the Event, which is having the function as "xla_reporting_sequence_pkg.period_close".
7. Make it Disable.
11i - AX - Why my Transaction has been accounted without Journal Entries?
Submitted by vamsi kasina on Sun, 2009-06-07 03:46
AX (Global Accounting Engine) creates journal entries only when the accounted amount is not equal to Zero.
As AX summarizes the journal entries by Plan Name (Accounting Class), Code Combination Id, Third Pary Id and Sub Id, if the accounted amount becomes zero, in those cases AX won't create Journal Entries.
- vamsi kasina's blog
- Login to post comments
R12 - XLA / FAH - Create Accounting is giving output as Blank
Submitted by vamsi kasina on Sun, 2009-06-07 03:25
Hope you haven't selected Report parameter as "No Report".
Create Accounting has mainly two templates.
"Subledger Accounting Program Report - Standard" inturn calls "Subledger Accounting Program Report - Sub Template".
"Subledger Accounting Program Report - Sub Template" is a sub template and shouldn't be used directly while submiting the Create Accounting.
If the output is blank, the template needs to be crosschecked, which is available in the Options Button of the SRS window.
- vamsi kasina's blog
- Login to post comments
- Read more
How to get the version of the files?
Submitted by vamsi kasina on Sat, 2009-06-06 13:51
For Packages:
SELECT text
FROM all_source
WHERE name = Upper('&package_name')
AND line = 2;
For Other Files:
SELECT af.subdir,
af.filename,
afv.version
FROM ad_files af,
ad_file_versions afv
WHERE af.file_id = afv.file_id
AND af.filename = '&file_name'
ORDER BY afv.creation_date DESC;- vamsi kasina's blog
- Login to post comments
- Read more
Is count(*) giving 0 rows? (Or) Isn't SELECT giving desired output?
Submitted by vamsi kasina on Sat, 2009-06-06 13:43
Are you using MO view like ap_invoices?
For all org_ids' data -> Use ap_invoices_all
For specific org_id's data -> 11i -> dbms_application_info.set_client_info(&org_id);
R12 -> mo_global.set_policy_context('S',&org_id);- vamsi kasina's blog
- Login to post comments
- Read more
R12 - GL / XLA / FAH - How to link GL data to the subledger data or vice versa
Submitted by vamsi kasina on Sat, 2009-06-06 13:16
gl_je_lines (je_header_id, je_line_num) -> gl_import_references (je_header_id, je_line_num) gl_import_references (gl_sl_link_table, gl_sl_link_id) -> xla_ae_lines (gl_sl_link_table, gl_sl_link_id) xla_ae_lines (applicaiton_id, ae_header_id) -> xla_ae_headers (application_id, ae_header_id) xla_ae_headers (application_id, event_id) -> xla_events (application_id, event_id) xla_events (application_id, entity_id) -> xla.xla_transaction_entities (application_id, entity_id)

