How To Use OE_ORDER_PUB.PROCESS_ORDER In Order Reserve Line With Specific Serial Number?
(Doc ID 1562204.1)
Last updated on SEPTEMBER 26, 2022
Applies to:
Oracle Order Management - Version 12.1.3 and laterInformation in this document applies to any platform.
Goal
How to use process order api OE_ORDER_PUB.PROCESS_ORDER in order to reserve line with specific serial number?
Following code was tried it did not work
P_LINE_TBL(1) := OE_ORDER_PUB.G_MISS_LINE_REC;
P_LINE_TBL(1).HEADER_ID := 374579;
P_LINE_TBL(1).LINE_ID := 833730;
P_LINE_TBL(1).RESERVED_QUANTITY := 1;
P_LINE_TBL(1).OPERATION := OE_GLOBALS.G_OPR_UPDATE;
L_Lot_Serial_tbl(1).from_serial_number := '800000108148232';
L_Lot_Serial_tbl(1).to_serial_number := '800000108148232';
L_Lot_Serial_tbl(1).LINE_ID := 833730;
Solution
To view full details, sign in with your My Oracle Support account. |
|
Don't have a My Oracle Support account? Click to get started! |
In this Document
Goal |
Solution |