Total Pageviews

March 6, 2016

3/06/2016 11:59:00 AM
1. Order Entry:  
This is first stage when Order in enter in system. When the order is entered it basically create a record in order headers and Order Lines table.
                           
Oe_order_headers_all ( flow_status_code as entered)

Oe_oreder_lines_all ( flow_status_code as entered)( Order number is generated.

2. Order Booking:
                         
This is next stage, when Order which is entered in step1 is booked and flow status changed from entered to Booked. At this stage these table get affected.



Oe_order_headers_all (flow_status_code as booked, booked_flag updated).

Oe_order_lines_all (flow_status_code as awaiting shipping, booked_flag updated).

wsh_new_deliverries ( status_code OP open).

Wsh_delivery_details ( released_status ‘R’ ready to release).


Note:
          Same time, Demand Interface program runs in back ground and insert into inventory tables mtl_demand.
   

3. Reservation:
This step is required for doing reservations SHCEDULE ORDER PROGRAM runs in the background and quantities are reserved .Once this program get successfully get completed, the mtl_reservations table get updated.

4. Pick Release :
Ideally pick release is the process which is defined in which the items on the sales order are taken out from inventory.

Normally pick release SRS program runs in background. Once the program get completed these are the table get affected.

Oe_order_lines_all (flow_status_code ‘PICKED’)
wsh_delivery_details ( released_status ‘S’ ‘submitted for release’)
mtl_txn_request_headers
mtl_txn_request_lines ( move order tables , Here request is generated to move item from saleable  to staging sub inventory).
Mtl_material_transactions_temp ( link to above tables through move_order_header_id/line_id.  
5. Pick Confirm :

Items are transferred from saleble to staging Sub inventory

Mtl_material_transactions
Mtl_transaction_accounts
Wsh_delivery_details (released_status ‘Y’ ‘Released’).
Wsh_delivery_assignments.

6. Ship Confirm :
Here ship confirm Interface program runs in background. Data removed from wsh_new_deliverries.

Oe_order_line_all ( flow_status_code ‘Shipped’)
wsh_delivery_details ( released_status ‘C’ ‘Shipped’)
mtl_transaction_interface
mtl_material_transactions ( linked through Transaction source header id)
mtl_transaction-accounts
Data deleted frommtl_demand,mtl_reservations
Item deducted from mtl_onhand_quatnities.

7. Enter invoice :
This is also called Receivable interface, that mean Information moved to accounting area for invoicing details.


Invoicing workflow activity transfers shipped item information to Oracle Reveivables.
Ra_interface_lines_all (interface table into which the data is transferred fromorder management) T.
Then Auto Invoice Program Imports data from this

Table which get affected into this stage are receivables base table.

Ra_customer_trx_all (cust_trx_id is primary key to link it to trx_lines tables and trx_number is invoice number).
Ra_customer_trx_lines_all (line_number_1 and line_attribute_6 are linked to header_id ( or order_number) and line_id of the orders).

8. Complete Line :
                                    This is stage order line level table get updated with Flow status and Open flag.
       
Oe_order_lines_all (flow_status_code ‘Shipped’, open_flag’N’).

9. Close Order  :
This is last step of Order Processing. In this stage only oe_order_lines_all table get updated.

 These are the table get affected in this step.

Oe_order_lines_all (flow_status_code ‘Closed’, open_flag ‘N’).

 These are the typically data flow of a order to cash model for a standard order.

 
Related Posts Plugin for WordPress, Blogger...