Free Oracle Magazine Profit:The Executive's Guide to Oracle Applications

Enter your e-mail address to receive notifications when there are new posts

Profit Magazine: The Executive's Guide to Oracle Applications

What are OPM Products ..

Posted on February 14th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

Obvious question was asked by yet another reader after this post?

“What are the modules that come under the umbrella of OPM ? “

Th answer is OPM includes OPM Process Planning, Product Development(which includes Formula,Recipe,Quality), Production, Financials(Costing,MAC), Logistics, Regulatory Management etc. These are products which come under this umbrella..

  • OPM Cost Management
  • OPM Formula Management
  • OPM Intelligence
  • OPM Inventory Management
  • OPM Laboratory Management
  • OPM Master Production Scheduling
  • OPM Material Requirements Planning
  • OPM Production Management
  • OPM Purchasing Management
  • OPM Quality Management
  • OPM Capacity
  • OPM Sales Management
  • Oracle Financial

Is there any difference from Oracle Discrete Manufacturing?

Yes, there is ..If you came from Discrete manufacturing background, these are one -to-one mapping between modules.

difference OPM and Discrete

.. OPM history

The history of Oracle OPM is one decade old, This is worth to know about OPM Life Cycle.

OPMHistory

Next would like to provide some more information for OPM API’s availability….

Posted in OPM | No Comments »

ERP Options for “Process Related Industries” -Aberdeen Report

Posted on February 13th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

Aberdeen Group, has recently published one report for “ERP Options for Process Related Industries “, Here is the link for free report.

double-arrow What you should know about Oracle OPM products

Oracle OPM designed exclusively for catering the business need for process manufacturers industry like:

  • Consumer Packaged Goods
    • Food, Beverage, Health and Beauty, Household Products
  • Industrial Products
    • Chemical, Pharmaceutical, Petroleum, Metals, Mining, Paper and Glass

The difference between Discrete and Process manufacturing can be best understood in my previous post.

double-arrowOracle OPM product Strengths

For those who are very new or not aware to Oracle OPM product, here are some of high points of Operational Functionality that product offered.Moreover there is significant changes has been seen in age of internet that has re-defined the operation of the supply chain(SCM) thus Oracle OPM Products too.

Please Check with Oracle OPM Page, to see what are the recent changes has been incorporated. based out of my exposure very long time back, these are the functionlity that product had.

  • Lot Traceability :In this some features like Lot/Sub lot,Forward/Backward Genealogy,Status Control
    ,Grade Control,Lot Expiration,Allocation for Shelf Days
  • Multiple Formulas (Bills) :These are typically used for formulas for production, costing planning, MSDS,Effectivities By Date for Seasonality,Effectivities by Quantity,Scaling,Alternate Routings,
    Scrap factors and theoretical yield
  • Support for A and V type Formulas : All three kind of formula like well suited here:
    • V Bills are constructive- Multiple ingredients one product
    • A Bills are destructive- One ingredient, multiple products
    • A Bills support co-products and- by-products
  • Ingredient Substitutions
    • The features like mass ingredient substitutions for formulas
    • Designed for ingredient substitutions in manufacturing orders (batches)
    • Manufacturing variances for substitutions tracked and reported.
  • Dual UOMs functionlity
    • Item specific UOMs
      • Count to Mass
      • Count to Volume
      • Mass to Volume
      • User defined UOM types
    • Lot specific UOMs
    • Dual UOM Types
      • Fixed
      • Defaulted with tolerance
      • No relation
    • Uses
      • Sell by count, invoice by weight
      • Dry pounds, wet pounds
      • % solids, % moisture
  • Specification Matching Functionlity
  • Some of the great features like
    • QC Specs and Results : This may be based out of vendor,customer,plant or by lot
    • There was yet another feature for customer spec matching.
  • Regulatory Compliance
    • Material Safety Data Sheets (MSDS) are configurable, also formulas for MSDS
  • Other features are flexible Costing, which can be either processIf Costing (Standard,Actual) or Organization Level basis (Warehouse,Item)

double-arrowRelated article

Posted in OPM | 1 Comment »

API’s or Open Interface

Posted on February 12th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

I was recently asked by a reader if I would be willing answer his questions, which was :

“Most of us are / have had worked with API’s & Open Interfaces. Both do the similar job, but have we ever wondered why would we use API’s when it can be done using Open Interface or vice versa? And, which is better” ?

….So, here you go.

..My dear friend, there is hardly any difference the way both is working,do check my previous post. Anyway here is back to basic :

OIT APIWhat are Open Interfaces?
The term Open Interfaces actually refers a programming interface, usually a database table, that automates the execution of Oracle APIs.

Open Interfaces provide a single, simple interface for a specified business procedure.

What are the Oracle APIs?

These are called as a collection of “Black Box” interfaces that provide programatic access into the Oracle ERP database.

The term API refers to stored procedure driven interfaces, where you call a stored procedure to perform an action within an Oracle Module, and the data from your external application is passed through the stored procedure’s parameters.

Why use Open Interfaces?

  • In EBS one Open Interface may run many API calls.
  • Open Interface run asynchronously.
  • The good is that if there is failure of record, they remain in the table until either fixed or purged.
  • They automate the interface into the APIs.
  • This requires less work and less code as few SQL DML would simply .

Why use APIs?

  • When there is no corresponding Open Interface.
  • Normally all Oracle APIs run synchronously, and provide immediate responses, therefore machism to be provided to handle such situation.
  • That requires custom error handling routine.
  • This may requires lot more effort as these need fine grain control approach.

Remember, the APIs are also used by the front end screens, and in the same way, will require all the appropriate prerequisites to be implemented.

Important to note, you cannot use APIs as an alternative to implementation.

Releated Post:

Posted in API | 3 Comments »

The world of Oracle API

Posted on February 12th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

There are 3 types of APIs exist in EBS.

double-arrowPrivate APIs : Private API’s are one which Oracle normally using internal, development purpose only. Details are not provided to anyone outside of the immediate development environment, nor are they intended for use by anyone outside of the e-Business Suite development environment.

double-arrowPublic APIs : These are designed for customers and Oracle consultants to integrate non-Oracle systems into Oracle e-Business Suite or to extend the functionality of the base products. Oracle does not support public APIs unless they are published in a reference manual.

double-arrowPublic, published APIs : These are one which Oracle guaranteed to remain valid from release to release, and patches will not alter the API behaviour. Public, published APIs are supported by Oracle to the same extent as released software.

Is there any way find out whether a standard API is PUBLIC or not in Oracle Application?

Yes, there is way, what you have do ,once you are able to find the information for API from irep, the next you have to find the file name and then you need to pull all information from specification header to know which one is public.

Take a simple case, you need to find API FND_USER_PKG which is defined in file AFSCUSRB.pls

logon to Unix box, and release this sort of command

grep -i public $FND_TOP/patch/115/sql/AFSCUSRB.pls

api's world

Based on the above result one can determine whether API is PUBLIC or not.

Simple example for checking AR Public APIs for finding the status

grep -i public $AR_TOP/patch/115/sql/ARXPRELB.pls
grep -i public $AR_TOP/patch/115/sql/ARXPRELS.pls
grep -i public $AR_TOP/patch/115/sql/ARXPRECS.pls
grep -i public $AR_TOP/patch/115/sql/ARXPRECB.pls

Important to Note:

For non-published APIs, Oracle expressly does not provide any guarantees regarding consistency of naming, usage, or behaviour of any API (public or private) between releases.

It Might be possible that a patch could alter any characteristic of any non-published e-Business Suite API.

Where are APIs located ?

For Oracle release 10.7, the APIs are located in the operating system directories such as:

$APPL_TOP/patchsc/107/sql

For Oracle release 11 and release 11i, the APIs are located in the operating system directories:

$APPL_TOP/patch/xxx/sql

where xxx represents the release 110 or 115.

Is there any tracking mechanism for API versions in different Applications releases?

As confirmed by some time back by Oracle support team , there is no such database object in Oracle Applications that keep such kind of information.

All APIs are owned and managed by different product groups within Oracle.

Normally each release comes with either product update notes, or and “About” note. You would need to review these documents for each E-Business Product.

The most comprehensive are the family pack “About” notes, as they in turn reference each individual product “About” note, which lists things like “Changes”.

Posted in API, EBS Suite | 5 Comments »

PO: Tips and useful Query

Posted on February 11th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

The consultant life while working at client site is not easy during ERP transformation projects, many times it’s required to provide some adhoc query for extract to ends users, therefore it is important to have a cheat sheet so that such untimely things can be easily handled in sort span. Hope these query and tips useful to all Inhouse IT personals who is part of Implementation Project team.

1. You need to list out all Internal Requisitions that do not have an associated Internal Sales order.

Internal Requisitions without Sales order

2. You want to display what requisition and PO are linked(Relation with Requisition and PO )

Requisition and PO

3. You need to list out all cancel Requisitions

Cancel Requisition

4. You need to list those PR which havn’t auto created to PO.(Purchase Requisition without a Purchase Order)

PR without PO

5. You need to list all information form PR to PO …as a requisition moved from different stages till converting into PR. This query capture all details related to that PR to PO.

PR to PO

6.Identifying all PO’s which does not have any PR’s

PO without Requisition

7. Relation between Requisition and PO tables

Here is link:

PO_DISTRIBUTIONS_ALL =>PO_HEADER_ID, REQ_DISTRIBUTION_ID
PO_HEADERS_ALL=>PO_HEADER_ID, SEGMENT1
PO_REQ_DISTRIBUTIONS_ALL =>DISTRIBUTION_ID, REQUISITION_LINE_ID
PO_REQUISITION_LINES_ALL =>REQUISITION_LINE_ID)
PO_REQUISITION_HEADERS_ALL =>REQUISITION_HEADER_ID, REQUISITION_LINE_ID, SEGMENT1

What you have to make a join on PO_DISTRIBUTIONS_ALL (REQ_DISTRIBUTION_ID) and PO_REQ_DISTRIBUTIONS_ALL (DISTRIBUTION_ID) to see if there is a PO for the req.

8.You need to find table which hold PO Approval path…

These two table keeps the data:

  • PO_APPROVAL_LIST_HEADERS
  • PO_APPROVAL_LIST_LINES

9. List all the PO’s with there approval ,invoice and Payment Details

List PO’s with Approval , invoice and Payment info

Read the rest of this entry »

Posted in Oracle Purchasing | 9 Comments »

Subscribe

Posted on February 7th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

Enter your e-mail address to receive notifications when there are new posts

Posted in Oracle Application | Comments Off

Happy Lunar new year

Posted on February 6th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

chinesenewyearTomorrow is Chinese New Year(February 7, 2008) ,the Year of the Rat. According to Wikipedia, the rat “was welcomed in ancient times as a protector and bringer of material prosperity.”

I wish a very happy Chinese New Year (Gong Xi Fa Cai…).

Have a safe, and prosperous year ahead.

Posted in Blogroll, Uncategorized | 2 Comments »

Highlights:Release 12 Oracle EBS Financials

Posted on February 4th, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

R12, Financial track is one of BEST release Ever. We have already seen some great functionality like:

  • A single responsibility to access and transact on multiple organizations
  • A single ledger to manage multiple currencies
  • Ledger sets to manage accounting processes across ledgers
  • Centralized rules engines for tax, accounting and inter company
  • A separate and simple payment creation and delivery solution
  • Centralized trading partners (suppliers, banks, first party legal entities)
  • Simplified reporting via XML Publisher and DBI
  • Netting across trading partners

Here are some of features old post :

double-arrowOracle Payable

Few Features like invoice Lines,Line level approvals,Matching to a PO shipment or receipt,Suppliers in TCA makes a complete new look. Read in details:

Read for more details

double-arrowLegal Entity & Legal Entity Architecture

Read for Details

For more from David’s blog

double-arrowMulti-Org Access Controls

Multi-Org Access Control feature allows you to enter, process data and generate reports from a single responsibility.

Read for More:

double-arrowAP-AR netting

This is used to offset Payable & Receivables and other functionlity like trading Partner Approval.

Read for More:

double-arrowGeneral Ledger

New Features like :

Eliminate Accounting Errors by providing Alternate Accounts Replace Disabled Accounts,Introduction for Definition Access Sets,Introducing Ledger Sets in place of SOB

Read for More:

double-arrowR12 Ledger

Read as partly covered

double-arrowSubledger Accounting

Rule based accounting engine, toolset & repository supporting ALL Oracle E-Business Suite modules.

Read for More:

double-arrowIntercompany

New featues centralized processing, a tight integration with Receivables & Payables along with nicly coupled with flexible approval rules makes a brand new A(advanced)GIS .New Reconciliation Tools is yet another that makes settlement progress easy.

Read for More details

double-arrowCash Managment
As bank Data Model has been changed and moved at a centralized place which get associated with legal entity association. Bank statement reconciliation become easier by more user friendly parameter.Other Features like centralized Balances & Interest,Interest Calculator,Bank Account Transfers makes a complete different look.

Read for More details

double-arrowPayment

Central Engine for Payment Disbursement and Funds Capture,Secure Repository for Credit Cards and Customer/Supplier Bank Accounts

Read for more details for technical coverage:

double-arrowBalancing

To Support Intercompany & Intracompany Transaction, the difference can be best understood as:

11i:
Balancing Journal Entries generated at posting time by the General Ledger Posting routine

In R12, the Balancing Routine:
Generates balancing accounting entries for subledger journal entries at time accounting is created
Generates balancing journal entries at posting time for all other journals Centralized Balancing Routine

Check out details from David’s blog

double-arrowOracle Receivables

double-arrowFixed Assets

Posted in Oracle Application, R12, Release12 | No Comments »

R12 AGIS : What makes “Advanced” - Part II

Posted on February 3rd, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

Thanks to David, who pointed me a node for process that makes Intercompany settlement easy.

For more details , here are the link:

A note on “Reconciliation process”

Reconciliation process is automated to easily reconcile intercompany receivables and intercompany payables account balances. The process helps user to identify account balances difference and to research the cause of difference. The reconciliation process supports drilldown to General Ledger journal details and subledger transaction details to investigate the reason of balance difference. The underline report have capablity to show:

  • Details by Reconciliation Summary
  • Details Reconciliation Summary by Source
  • Details Reconciliation Summary by Journals

Posted in InterCompany | No Comments »

R12 - Oracle General Ledger - New and enhanced features

Posted on February 2nd, 2008 by Sanjit Anand |Print This Post Print This Post |Email This Post Email This Post

Lot many emails I was getting since in past few months , asking to share some more information for R12 of General Ledger features, so thought to share in a post.

Here are some of the new feature of General Ledger in R12.

arrow upAccounting Setup Manager

The ledger is a basic concept in Release 12. The ledger replaces the 11i concept of a set of books. It represents an accounting representation for one or more legal entities or for a business need such as consolidation or management reporting. Companies can now clearly and efficiently model its legal entities and their accounting representations in Release 12. This seems to be a major area in getting success of the shared service center and single instance initiatives where many or all legal entities of an enterprise are accounted for in a single instance, and data, setup, and processing must be effectively secured but also possibly shared.

Now, legal Entities can be mapped to entire Ledgers or if you account for more than one legal entity within a ledger, you can map a legal entity to balancing segments within a ledger.

While a set of books is defined by 3 C’s,

  1. chart of accounts
  2. functional currency
  3. accounting calendar,

The addition in this list the ledger is defined by a 4th C: the accounting method,

This 4th C allows you to assign and manage a specific accounting method for each ledger. Therefore, when a legal entity is subject to multiple reporting requirements, separate ledgers can be used to record the accounting information.

Accounting Setup Manager is a new feature that allows you to set up your common financial setup components from a central location.

What is Accounting Setup Manager

Accounting Setup Manager is a new feature that streamlines the setup and implementation of Oracle Financial Applications. The Accounting Setup Manager will facilitate the setup required for simultaneous accounting for multiple reporting requirements.

With the Accounting Setup Manager, you can perform and maintain the following common setup components from a central location:

  • Legal Entities
  • Ledgers, primary and secondary
  • Operating Units, which are assigned to primary ledgers
  • Reporting Currencies, which is an enhanced feature
  • Subledger Accounting Options. This is where you define the accounting methods for each legal entity subledger transaction and associate them to the ledger where the accounting will be stored.
  • Intercompany Accounts and Balancing Rules
  • Accounting and Reporting Sequencing
  • Both Intercompany and Sequencing

Will discuss some more granular details in some other post.

arrow upSubledger Accounting (SLA)

As discussed in couple of earlier post GL is integrated with SLA to enable a unified process to account for subledger transactions and post data to GL, and to provide a consistent view when drilling down from GL to subledger transactions. You can read here.

SLA

arrow upEnhanced Foreign Currency Processing by Reporting Made easy

GL has added new features and enhanced existing features to support foreign currency processing , they are mainly as:

  • In R12, MRC feature is enhanced with a feature call Reporting Currencies. That mean it will now support multiple currency representations of data from any source, including external systems, Oracle or non-Oracle subledgers, and Oracle General Ledger journals and balances.
  • The second one is in reporting to view balances view balances that were entered in your ledger currency separate from those balances that were entered and converted to the ledger currency.The change in R12 is that balances entered in the ledger currency are maintained separately from balances converted to the ledger currency for use in Reporting and Analysis.

Here’s an example. Assume we have a ledger and the ledger currency is USD.
I enter and post two journals; one in 1,000 US Dollars, and another in 500 British Pounds that gets converted to 1200 US Dollars.

In Release 11i, I can review the 500 GBP and the 1200 USD that results from converting the 500 GBP, and the total 2200 USD which is the USD balance in the Cash Account. The $2200 is the sum of the $1000 entered in USD and the $1200 converted from the 500 British Pounds. However, I view that a 1000 USD were entered directly in USD.

In Release 12, I can view the 1000 USD by performing an account inquiry on the Cash account for balances entered only in the ledger currency. The amounts entered in foreign currencies that were converted to the ledger currency will not be included in the balance. Of course, if I want to retrieve all balances in USD, both the entered as well and the converted, I can still do that in Release 12.

FORGAIN

 

arrow upCreating foreign currency recurring journals

In Release 11i, you could define recurring journals using the functional currency or STAT currency.

Now in Release 12, you can create recurring journals using foreign currencies. This is particularly useful if you need to create foreign currency journals that are recurring in nature. For example, assume a subsidiary that uses a different currency from its parent borrows money from the parent. The subsidiary can now generate a recurring entry to record monthly interest payable to the parent company in the parent’s currency.

arrow upData Access to Multiple Legal Entities and Ledgers

You no longer have to constantly switch responsibilities in order to access the data in a different ledger. You can access multiple ledgers from a single responsibility as long as all ledgers share the same chart of accounts and calendar.

arrow upSimultaneous Opening and Closing of Periods for Multiple Ledgers

You no longer have to open and close periods for each ledger separately. You can now open and close periods across multiple ledgers simultaneously by submitting Open and Close Periods programs from the Submit Request form.

arrow upSimultaneous Currency Translation of Multiple Ledgers

You can run the Translation program for multiple ledgers simultaneously, if you are managing multiple ledgers.

arrow upFinancial Reporting for Multiple Ledgers

Now with this feature you can run Financial Statement Generator (FSG) reports for multiple ledgers simultaneously. This is useful if you manage multiple ledgers and want to run a balance sheet or income statement report for all of your ledgers at the same time.

arrow upCross-Ledger and Foreign Currency Allocations

You are able to allocate financial data from one or more ledgers to a different target ledger. This enables you to perform cross-ledger allocations, which is useful for purposes such as allocating corporate or regional expenses to local subsidiaries when each entity has its own ledger

arrow upStreamlined Automatic Posting

You can now share AutoPost Criteria sets across multiple ledgers that share the same chart of accounts and calendar and use the AutoPost Criteria sets to post journals across multiple ledgers simultaneously.

arrow upStreamlined AutoReversal Criteria Setup Integrated Web-based

AutoReversal Criteria Sets can also be shared across ledgers to reverse journals across multiple ledgers. This is enhanced by integrated Web-based Spreadsheet Interface.

arrow upJournal Copy

Now we can now copy entire journal batches. You can copy journal batches with any status. The system will create a new journal batch containing the same journal entries.You may also change the batch name, period, and/or effective date while copying the journal batch. After copying the journal batch, you may modify the unposted journals in the same manner as any manually created journals.

arrow upStreamlined Consolidation Mappings

You are able to define Chart of Accounts Mappings (formerly known as Consolidation Mappings) between two charts of accounts. Therefore, if you have multiple Consolidation Definitions for parent and subsidiary ledgers that share the same chart of accounts pair, and their mapping rules are the same, you only have to define a single Chart of Accounts Mapping.

The enhancement in R12 allows you to define mappings between charts of accounts instead of between sets of books, so that they can be shared across multiple Consolidation Definitions.

Therefore, if you have multiple Consolidation Definitions for parent and subsidiary ledgers that share the same chart of accounts pair, and their mapping rules are the same, you only have to define a single Chart of Accounts Mapping.

You can also secure access to chart of accounts mappings using definition access set security. This allows you to secure which users can view, modify, and/or use chart of account mappings in consolidation definitions.

arrow upReplacement for Disabled Accounts

Normally when an account is disabled, you can prevent transactions that include the account from erroring during journal import by defining a replacement account for the disabled account. Journal import replaces the disabled account with the replacement account and continue the journal import process if the replacement account is valid. This improves processing efficiency by preventing the journal import process from erroring and enabling the successful creation of the journal with minimal user intervention when an account has been disabled.

arrow upData Access Security for Legal Entities and Ledgers

In R12, since you can access multiple legal entities and ledgers when you log into Oracle General Ledger using a single responsibility, Oracle General Ledger provides you with flexible ways to secure your data by legal entity, ledger, or even balancing segment values or management segment values. You are able to control whether a user can only view data, or whether they can also enter and modify data for a legal entity, ledger, balancing segment value or management segment value.

arrow upManagement Reporting and Security

This can be best understood as:You can designate any segment (except the natural account segment) of your chart of accounts to be your management segment and use Oracle GL security model to secure the management segment for reporting and entry of management adjustments.

arrow upPrevent Reversal of Journals with Frozen Sources

You can no longer reverse journals from frozen sources defined in the journal sources form.

If the journal is created from a frozen source, the journal cannot be modified even if the source is subsequently unfrozen in the future.
This provides streamlined data reconciliation with subsystems. Not being able to reverse journals that originated in subledgers will ensure that the account balances will always tie out with General Ledger. If you need to reverse a subledger journal, then you should do so in Subledger Accounting or the subledger application.

arrow upPrevent Reversal of Unposted Journals

You also can no longer reverse unposted journals. This ensures data integrity and better auditability. In the past when we allowed you to reverse unposted journals, there was a risk that the original journal could be deleted so you could end up reversing something that didn’t exist. Now, all reversals can be tied back to the original posted journal.

arrow upIntegrated Web-based Spreadsheet Interface

Through the integration with Web ADI, users can now leverage spreadsheet functionality in Oracle General Ledger via a web-based interface. The spreadsheet interface can be conveniently launched from a GL responsibility.

Using the Journal Wizard, we can leverage spreadsheet functionality to create actual, budget, or encumbrance journals. You can take advantage of spreadsheet data entry shortcuts such as copying and pasting or dragging and dropping ranges of cells, or even using formulas to calculate journal line amounts. You can then upload your journals to Oracle General Ledger. Before uploading, you can save and distribute your journal worksheets for approval.

We can also import data from text files into spreadsheets, where it can be further modified before uploading to Oracle. This functionality is useful when migrating data from legacy systems, or from any source that can produce delimited files.

Using the Budget Wizard, you can download budget amounts to a spreadsheet, modify the amounts, and then upload them back. You can also choose to download the actual amounts to compare it with the budget amount. Budget Wizard also allows you to plot graphs and do a graphical comparison on the amounts. Budget Wizard also provides budget notes. You can add descriptions to accounts and amounts in your budget and explain your budget within the budget worksheet, avoiding the clutter of external documentation.

arrow upControl Accounts

You are able to control data entry to an account by ensuring it only contains data from a specified journal source and to prevent users from entering data for the account either in other journal sources or manually within general ledger.

arrow upSecurity for Definitions

You can secure your setup and definitions by granting specific privileges to users to view, modify, and/or execute a definition. This enables you to control which of your users can view a definition, but not modify or execute it, or execute a definition without modifying it, or vice versa.

Following is a list of definitions that have this security available for:

  1. MassAllocation and MassBudget Formulas
  2. FSG Reports and Components
  3. Accounting Calendars
  4. Transaction Calendars
  5. AutoPost Criteria Sets
  6. AuoReversal Criteria Sets
  7. Budget Organizations
  8. Chart of Accounts Mappings
  9. Consolidation Definitions
  10. Consolidation Sets
  11. Elimination Sets
  12. Ledger Sets
  13. Recurring Journals and Budget Formulas
  14. Rate Types
  15. Revaluations

arrow upSequence for Reporting

Maintaining two sequnces have been introduced, accounting and reporting sequencing.

Read my earlier post for more details:

arrow upJournal Line Reconciliation

Journal Line Reconciliation enables you to reconcile journal lines that should net to zero, such as suspense accounts, or payroll and tax payable accounts for countries, such as Norway, Germany, or France.

In R12, we’ve made many improvements to intercompany accounting. R11i’s Global Intercompany System (GIS) has been replaced with an exciting new product called Advanced Global Intercompany System (AGIS). We also extended intercompany balancing support to include encumbrance journals.

arrow upEnhanced Intercompany

For more deatils , read this

arrow upSome of the GL Standard Reports converted into XML Publisher

Oracle General Ledger’s Account Analysis, General Journals and Trial Balance standard reports are now integrated with XML Publisher.

Hope these feature greatly enhanced in GL operation.Any comments:)

Posted in Oracle General Ledger | 12 Comments »

Next Entries »