When trying to use RCV interfaces and ran Receiving transaction Processor import program, the transaction errored out with message "The parameters passed to procedure populate_cost_details are invalid."
In the documentation, the column name LAST_UPDATE_LOGIN is noted as "optional".
However, the columns user_id and login_id in package
inv_wwacst.populate_cost_details are selected from
mtl_material_transactions_temp table in inltpu, which is populated by the
Receiving Interface Manager. These columns are expected to be NOT null and
will error if they are null. The solution is to populate the LAST_UPDATE_LOGIN
with a value (type is Number. Even though Purchasing does not require this
field to be populated, this is required in Inventory when the items are
delivered.
Refer Metalink Note: 99533.1
Keywords: Receiving Open Interface, RVCTP, PO Receipts, populate_cost_details
Search This Blog
Sunday, December 6, 2009
Error in RCV Transactions Interface (Receiving Transaction Processor)
Posted by Suresh Vaishya at 11:00 AM 0 comments
Labels: Oracle Purchasing
Wednesday, November 25, 2009
Sales Order Line Status Flow and Meaning
Below are some of the different statuses of Sales Order Line with brief explanation
OM = Order Management Sales order form
SE = Shipping Transactions or execution form
1) Entered (OM): Order is saved but not booked
2) Booked (OM): Order is Booked.
3) Awaiting Shipping (OM): Order is booked but lines are not yet picked.
Navigating to Shipping Execution, the delivery line status flow is:
4) Not Ready to Release (SE): A delivery line may be in this status when it is interfaced manually into Shipping, is not scheduled and has no reservations. When lines are imported automatically from Order Management this status is not used
5) Released to Warehouse (SE): Pick Release has started but not yet completed. One of the reason could be allocation have not been pick confirmed. The Pick Release process creates a Move Order Header & Mover Order Line in Inventory. This is a common status for users that perform a two-step pick release process. This status indicates that inventory allocation has occurred however pick conformation has not yet taken place.
6) Ready to Release (SE): Order Line is booked and passed to shipping execution. The line is now eligible to pick Release.
7) Backordered(SE): The status of Backorderd is assigned to a line under the following circumstances.
8) Shipped (SE): The delivery line is shipped confirmed.
9) Confirmed (SE): The delivery line is shipped or backordered and the trip stops are open.
10) Picked (OM): Pick release is complete, both allocations and pick confirm
11) Picked Partial (OM): This status occurs when a delivery line is not allocated the full quantity during Pick Release and Ship Confirm has not occurred
12) Interfaced (SE): The delivery line is shipped and Inventory interface concurrent process is complete.
13) Awaiting Fulfillment (OM): When fulfillment set is used, Not all shippable lines in a fulfillment set or a
configuration are fulfilled
14) Fulfilled (OM): All lines in a fulfillment set are fulfilled.
15) Interfaced to Receivables (OM): The order is linked with Receivables and the invoice is created.
16) Partially Interfaced to Receivables (OM): This status is used in a PTO flow and indicates that the particular PTO item is required for revenue.
17) Closed (OM): Closed indicates that the line is closed.
18) Canceled (OM): Indicates that the line has been completely canceled. No further processing will occur for this line.
Reference: Oracle Metalink
Posted by Suresh Vaishya at 2:13 PM 7 comments
Labels: Oracle Order Management
Tuesday, November 3, 2009
SQL Loader limit number of rows
Based on a query from one of our reader here is an example to illustrate how to limit number of rows to be loaded in SQL Loader. This can be done using option LOAD
OPTIONS (SKIP=1, LOAD=10, ERRORS=5)
LOAD DATA infile c:/sv_test.dat
REPLACE INTO TABLE sv_test_sql_tbl
FIELDS TERMINATED BY "," optionally enclosed by '"'
trailing nullcols
(
item_number "trim(:item_number)"
, vendor_name "trim(:vendor_name)"
, vendor_site_name "trim(:vendor_site_name)"
, supplier_item "trim(:supplier_item)"
, process_flag Constant 'UNPROCESSED'
)
In the example above the total records to be loaded is limited to 10, error records is 5 and 1 record is skipped.
These options can also be given with sqlldr command as follows
sqlldr control='sv_test.ctl' data='sv_test.dat' load=10 errors=5 skip=1
Keywords: SQL*LOADER, ERRORS, SKIP, LOAD
Posted by Suresh Vaishya at 9:16 AM 2 comments
Labels: SQL Loader, Unix
