Order To Cash O2C Cycle With Table Detai PDF
Order To Cash O2C Cycle With Table Detai PDF
1. Order Entry
This is the first stage where Order is entered into the system. It creates a record in Headers table and Lines table
OE_ORDER_HEADERS_ALL:
This table stores the Header Information of the Sales Order
Sample code:
SELECT HEADER_ID,
ORG_ID,
ORDER_TYPE_ID,
FLOW_STATUS_CODE,
TRANSACTIONAL_CURR_CODE,
SHIPPING_METHOD_CODE,
SHIP_FROM_ORG_ID,
SHIP_TO_ORG_ID
FROM OE_ORDER_HEADERS_ALL
WHERE ORDER_NUMBER = 66405;
OE_ORDER_LINES_ALL:
This table stores the Line Information of the Sales Order
Sample code:
SELECT LINE_ID
FROM OE_ORDER_LINES_ALL
WHERE HEADER_ID = 190452;
SELECT ORDERED_ITEM,
INVENTORY_ITEM_ID,
PRICING_QUANTITY,
ORDERED_QUANTITY,
FLOW_STATUS_CODE,
UNIT_SELLING_PRICE_PER_PQTY
FROM OE_ORDER_LINES_ALL
WHERE LINE_ID = 388401;
2. Order Booking
Order Booking is the final stage in the Sales Order entry. Now that the Order Entry process is complete and that the
order is eligible for the next stage in the line flow for this order, as defined by its Transaction Type. By clickingBook
Order button, the Order is booked.
OE_ORDER_HEADERS_ALL
OE_ORDER_LINES_ALL
WSH_DELIVERY_DETAILS
When the Order is Booked, the FLOW_STATUS_CODE in OE_ORDER_HEADERS_ALL would be ‘BOOKED’ and
the FLOW_STATUS_CODE in OE_ORDER_LINES_ALL would be ‘AWAITING_SHIPPING’
RELEASED_STATUS in WSH_DELIVERY_DETAILS would be ‘R’ (means- ready to release)
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
Sample Code:
SELECT DELIVERY_DETAIL_ID,
SOURCE_HEADER_ID,
SOURCE_LINE_ID,
SOURCE_CODE,
CUSTOMER_ID,
INVENTORY_ITEM_ID,
ITEM_DESCRIPTION,
SHIP_FROM_LOCATION_ID,
SHIP_TO_LOCATION_ID,
MOVE_ORDER_LINE_ID,
REQUESTED_QUANTITY,
SHIPPED_QUANTITY,
SUBINVENTORY,
RELEASED_STATUS,
SHIP_METHOD_CODE,
CARRIER_ID
FROM WSH_DELIVERY_DETAILS
WHERE SOURCE_HEADER_ID = 190452;
WSH_DELIVERY_DETAILS: Here RELEASED_STATUS should be ‘S’ (Submitted for Release) or ‘Y’ (Pick
Confirmed). These values again depend on the parameters given at Auto Pick Confirm (set to No or Yes)
Sample Code:
SELECT DELIVERY_DETAIL_ID
FROM WSH_DELIVERY_DETAILS
WHERE SOURCE_HEADER_ID = 190452;
SELECT DELIVERY_ASSIGNMENT_ID,
DELIVERY_ID,
PARENT_DELIVERY_ID,
DELIVERY_DETAIL_ID,
PARENT_DELIVERY_DETAIL_ID,
CREATION_DATE,
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
CREATED_BY,
LAST_UPDATE_DATE,
LAST_UPDATED_BY,
ACTIVE_FLAG,
TYPE
FROM WSH_DELIVERY_ASSIGNMENTS
WHERE DELIVERY_DETAIL_ID = 3966467;
Sample Code:
SELECT INTERFACE_LINE_CONTEXT,
INTERFACE_LINE_ATTRIBUTE1,
INTERFACE_LINE_ATTRIBUTE3
FROM RA_INTERFACE_LINES_ALL
WHERE INTERFACE_LINE_ID = 388401;
Sample Code:
SELECT INTERFACE_HEADER_ATTRIBUTE2,
CUSTOMER_TRX_ID,
TRX_NUMBER,
CUST_TRX_TYPE_ID,
COMPLETE_FLAG,
SHIP_DATE_ACTUAL
FROM RA_CUSTOMER_TRX_ALL
WHERE INTERFACE_HEADER_ATTRIBUTE1 = ‘66405’;
6. Create Receipt
Underlying tables:
AR_CASH_RECEIPTS_ALL
CASH_RECEIPT_ID is the unique system generated ID
FLOW_STATUS_CODE in OE_ORDER_LINES_ALL should be ‘CLOSED’
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
O2C Cycle
Order to cash process steps can be listed as below
Enter the Sales Order
Book the Sales Order
Launch Pick Release
Ship Confirm
Create Invoice
Create the Receipts either manually or using Auto Lockbox ( In this article we will concentrate on Manual
creation)
Transfer to General Ledger
Journal Import
Posting
Click on Lines Tab. Enter the Item to be ordered and the quantity required.
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
You can check if the item to be ordered is available in the Inventory by clicking on Availability Button.
Now that the Order is BOOKED, the status on the header is change accordingly.
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
Pick Release process in turn will kick off several other requests like Pick Slip Report,
Shipping Exception Report and Auto Pack Report
IF Auto Pick Confirm in the above step is set to NO, then the following should be done.
Navigation: Inventory Super User > Move Order> Transact Move Order
In the HEADER tab, enter the BATCH NUMBER (from the above step) of the order. Click FIND. Click on
VIEW/UPDATE Allocation, then Click TRANSACT button. Then Transact button will be deactivated then just close it
and go to next step.
This will kick off concurrent programs like.INTERFACE TRIP Stop, Commercial Invoice, Packing Slip Report, Bill of
Lading
Underlying tables affected:
RELEASED_STATUS in WSH_DELIVERY_DETAILS would be ‘C’ (Ship Confirmed)
FLOW_STATUS_CODE in OE_ORDER_HEADERS_ALL would be “BOOKED”
FLOW_STATUS_CODE in OE_ORDER_LINES_ALL would be “SHIPPED”
Create Invoice:
Run workflow background Process.
Navigation: Order Management >view >Requests
Underlying tables:
RA_CUSTOMER_TRX_ALL will have the Invoice header information. The column
INTERFACE_HEADER_ATTRIBUTE1 will have the Order Number.
RA_CUSTOMER_TRX_LINES_ALL will have the Invoice lines information. The column
INTERFACE_LINE_ATTRIBUTE1 will have the Order Number.
Create receipt:
Navigation: Receivables> Receipts> Receipts
Enter the information.
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
Underlying tables:
AR_CASH_RECEIPTS_ALL
Underlying tables:
This transfers data about your adjustments, chargeback, credit memos, commitments, debit memos, invoices, and
receipts to the GL_INTERFACE table.
Journal Import:
To transfer the data from General Ledger Interface table to General Ledger, run the Journal Import program from
Oracle General Ledger.
Navigation: General Ledger > Journal> Import> Run
Parameters:
Select the appropriate Source.
Enter one of the following Selection Criteria:
No Group ID: To import all data for that source that has no group ID. Use this option if you specified a NULL
group ID for this source.
All Group IDs: To import all data for that source that has a group ID. Use this option to import multiple journal
batches for the same source with varying group IDs.
Specific Group ID: To import data for a specific source/group ID combination. Choose a specific group ID from
the List of Values for the Specific Value field.
If you do not specify a Group ID, General Ledger imports all data from the specified journal entry source, where
the Group_ID is null.
Define the Journal Import Run Options (optional)
Choose Post Errors to Suspense if you have suspense posting enabled for your set of books to post the difference
resulting from any unbalanced journals to your suspense account.
Choose Create Summary Journals to have journal import create the following:
• one journal line for all transactions that share the same account, period, and currency and that has a debit
balance
• one journal line for all transactions that share the same account, period, and currency and that has a credit
balance.
Enter a Date Range to have General Ledger import only journals with accounting dates in that range. If you do
not specify a date range, General Ledger imports all journals data.
Choose whether to Import Descriptive Flexfields, and whether to import them with validation.
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
Underlying tables:
GL_JE_BATCHES, GL_JE_HEADERS, GL_JE_LINES
Posting:
We have to Post journal batches that we have imported previously to update the account balances in General Ledger.
Navigation: General Ledger> Journals > Enter
Query for the unposted journals for a specific period as shown below.
From the list of unposted journals displayed, select one journal at a time and click on Post button to post the journal.
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
If you know the batch name to be posted you can directly post using the Post window
Navigation: General Ledger> Journals> Post
Order to Cash (O2C) Cycle with Table details in Oracle Apps O2C
Underlying tables:
GL_BALANCES.