Blogs
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)
R12 - XLA / FAH - Create Accounting (with Transfer to GL parameter as Yes) is not transferring all the journal entries to GL
Submitted by vamsi kasina on Sat, 2009-06-06 12:59
Create Accounting (with Transfer to GL parameter as Yes) will transfer only the journal entries to GL, which have been created by the same Create Accounting run.
To transfer the journal entries to GL, which have been accounted by previous Create Accounting (with Transfer to GL parameter as No) runs, "Transfer Journal Entries to GL" concurrent program needs to be run.
- vamsi kasina's blog
- Login to post comments
- Read more
R12 - XLA / FAH - Difference between Draft, Final, etc in Create Accounting / Online Accounting
Submitted by vamsi kasina on Sat, 2009-06-06 12:41
Online Accounting: (For single entity / transaction)
Only few subledgers are providing this feature.
Draft will create journal entries, which are not final, which means they are not ready to be transferred to GL.
You can see the accounting in xla_ae_headers and xla_ae_lines.
How to import table with custom type
Submitted by dafon on Thu, 2009-04-30 09:13When importing table that contained custom type, you will encounter an oracle error as shown below:
Import of table containing object type(s) fails with IMP-00061 IMP-00063
cause:
When you import a table that references a type, but a type of that name
already exists in the database. Import attempts to verify that the pre-existing
type is in fact the type used by the table(rather than a different type that
just happens to have the same name).
- dafon's blog
- Login to post comments
- Read more
RMAN checksyntax
Submitted by knight on Wed, 2009-04-01 23:29RMAN is recommended for backups/restore of oracle databases.It is a very powerful tool and has variety of useful features.There is 'checksyntax' feature in RMAN which allows one to check RMAN scripts syntactically without executing it.This feature is available from 10G release 2.It proves to be useful for checking scriptsfor live databases where one doesnt have leisure to execute scripts any time and any times!!
bash-3.00$ vi rman_bkp.rman
RUN {
ALLOCATE CHANNEL c1 TYPE DISK FORMAT '/data/backup/Hotbkp_Full_%D_%d_%s_%p'; BACKUP database; RELEASE CHANNEL c1;
allocate channel c2 type dis
- knight's blog
- Login to post comments
- Read more
Oracle SQL Model - An Alternative to UNION for Creating A list of Static Values
Submitted by rnanton on Tue, 2009-03-10 18:10Here’s an alternative to the union statement for creating a collection of values using the Oracle SQL Model construct in 10g.
[code]--Using SQL Model clause to return a list of items.
SELECT col_1 Product, col_2 Price, col_3 Description
FROM (SELECT -1 col_id,
RPAD ('X', 30) col_1,
TO_NUMBER(RPAD ('1', 3)) col_2,
RPAD ('X', 40) col_3
--Change RPAD number to reflect length of column value.
FROM DUAL)
WHERE col_id <> -1
MODEL
DI
- rnanton's blog
- Login to post comments
- Read more

