Skip to main content

Creating Summary Accounts

Creating Summary Accounts

Summary accounts store balances of multiple accounts. To define how balances roll up into a summary account, you must set up summary templates. Summary templates can be defined by regular flexfield values, parent values, and rollup groups.

Defining Parent Segment Values

Parent Segment Values (also called parent values ) are values that reference other segment values typically knows as child segment values(also called child values). You can set up parent values for any segment values together, and they are utilized in reporting and/or assigned to rollup groups. Child values can be defined in ranges or individually.
Using the Chart of Accounts you defined earlier,you are going to add a parent value called ASSETS to include balances from the Cash and Receivables asset accounts you created earlier. You define parent values in the same from you define you segment values. Find your accounting flexfield structure and the account segment. To do this enter accounting flexfield structure and the segment name corresponding to the account segment in the find window, then click on the find button. You will see the values that are valid for the account segment. Go to the values(accounts) region, add a new record, and enter the value ASSETS and a description. Navigate to the Hierarchy, Qualifiers alternative region and check the Parent Checkbox to make this parent value.
Next define child values for the ASSETS parent value. Save first then click on the Define Child Ranges button to enter the child values. Enter child values for the Cash Account and the Receivables account, and in the include column select Child Values Only.

Defining Rollup Groups

Rollup groups are one level higher then parent values. Use rollup groups in summary account templates. Assign parent values to roolup groups. In order to use parent values in summary account templates, we must first assign the parent values to the rollup groups.
We can define rollup groups via the navigation path
Setup/Financials/Key/Groups
we will be presented with a find key Flexfield segment window, enter the name of you accounting flexfield structure in the structure field and then click on the Find Button. Go to the Rollup groups region and enter you rollup group names and description. Create a Rollup group called ASSETS now so you can assign the parent values we defined in the define segment values form.

Assigning Rollup Groups

Rollup groups are assigned to parent values in the Segment values from Navigaiton
Setup/Financials/Flexfields/Validation/Values
in this form the group field is in the Hierarchy, Qualifiers group, just to the right of the parent checkbox.

Defining Summary Accounts

Now you can create summary accounts. Summary accounts will be described in detail in a later chapter, but an overview is provided here. After following the navigation path
Setup/Accounts/Summary, we enter a name, a template and a description for the summary account template. We must also enter the earliest period for which Oracle General Ledger should generate summarized balances.

Summary accounts are generated based on the defined summary account templates. To setup summary account templates, we define a template option for each segment of the Chart of Accounts options include

D
T
Rollup groups

D- D Means to create a summar account for each segment value of the segment. The system will not allow to setup a summary account template with all D's because doing so would cause each segment to expand to include every possible segment value.

T- T means to create one summar account that summarizes all segment values. T must be a defined parent value with the entire segments possible values as child values. No rollup group must be assinged to T. When using this option,the Detailed Posting Allowed and Detailed Budgeting Allowed parameters are set to NO. You do not need to set up a summary account with Ts in every segment because doing so would create one account that totals the system and this account combination would always have a balance 0.

Rollup Groups- A rollup group is used to create one summary account for each parent values assigned to it. For instance assume you have three companies. five departments, then accounts, and Rollup Group R1 in the account segment with two parent values. A summary account template of D-T-D will create 3*1*10=30 summary accounts. A summary account template of D-T-R1 will create 3*1*2=6 summary accounts.

Maintain Summary Accounts
We do not need to maintain summary accounts If you only add child values to parent values. The new child values will automatically be included when the Maintain Summary Templates program is executed. The maintain summary templates program can be invoked manually; it is also called automatically by the posting program. We may want to run the maintain summary templates program prior to posting if we add a lot of child values for performing reasons. However , if we add parent values to rollup groups and the rollup groups are used in summary accounting templates, you will need to delete the related summary accounts and re create them. Adding or deleting summary accounts will initiate the Add/Delete Summary accounts program automatically.

Comments

Popular posts from this blog

Create Accounting for a Payment generates errors 95333 and 95359

Create Accounting for a Payment generates errors 95333 and 95359 Error: 95333: A conversion rate does not exist to convert USD to AUD for the conversion type Corporate and conversion date 20-MAR-09 for line -25. Please use the Daily Rates form in General Ledger to enter a conversion rate for these currencies, conversion date and conversion type. 95359: There is no accounted amount for the subledger journal entry line. Please inform your system administrator or support representative that: The source assigned to the accounting attribute Accounted Amount has no value for extract line number 88547. Please make sure the source assigned to the accounting attribute Accounted Amount has a valid value, or assign a different source to this accounting attribute. Solution: 1. Specify a conversion rate for the currencies and conversion date mentioned in the error message 95333 Navigation under the General Ledger responsibility: Setup > Currencies > Currency Rates Manager > Daily Rates ...

Public API’s for FA Transactions

Public API’s for FA Transactions So far Oracle FA is have all the good things except the lack on reporting.Oracle FA is now offer lot of public API's that can be used to interfacing with third party or Oracle application other modules. Here are some of transaction's API's:   Additions API if you have requirement to add assets directly via PL/SQL then use  FA_ADDITION_PUB.DO_ADDITION. If you have selected the Allow CIP Assets check box on the Book Controls window of a tax book when adding CIP assets using the Additions API, the this API automatically adds those CIP assets to that tax book at the same time that they are added to the corporate book. Adjustments API you can make cost adjustments to your assetsdirectly via PL/SQL using  FA_ADJUSTMENT_PUB.DO_ADJUSTMENT  for any  process adjustment. Detail can be found in appendix H) You can use this API if you have a custom interface that makes it difficult to use with the existing Oracle Assets interfaces for adjusti...

AP Table Relation Oracle Apps

AP Table Relation Oracle Apps ORACLE PAYABLE TABLE RELATION Source Table Dependent Table Condition AP_INVOICE_LINES_ALL AIL ZX_LINES_SUMMARY ZLS AIL.invoice_id = ZLS.trx_id and  ZLS.application_id  = 200 and  ZLS.entity_code  = 'AP_INVOICES' and  ZLS.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.summary_tax_line_id = ZLS.summary_tax_line_id AP_INVOICE_LINES_ALL AIL ZX_LINES ZL AIL.invoice_id = ZL.trx_id and  ZL.application_id  = 200 and  ZL.entity_code  = 'AP_INVOICES' and  ZL.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and  AIL.line_number = ZL.trx_line_number AP_INVOICE_DISTRIBUTIONS_ALL AID ZX_REC_NREC_DIST ZD AID.invoice_id = ZD.trx_id and  ZD.application_id  = 200 and  ZD.entity_code  = 'AP_INVOICES' and  ZD.event_class_code  in ('STANDARD INVOICES', 'PREPAYMENT INVOICES', 'EXPENSE REPORTS') and...