DBA Data[Home] [Help]

APPS.OE_HOLDS_PVT dependencies on OE_ORDER_LINES

Line 46: , LINE_ID OE_ORDER_LINES.LINE_ID%TYPE

42: -- Header and line id, in case only put this order or line on hold for
43: -- a specific header or line. Also for line level hold we need to pass
44: -- line id.
45: , HEADER_ID OE_ORDER_HEADERS.HEADER_ID%TYPE
46: , LINE_ID OE_ORDER_LINES.LINE_ID%TYPE
47: );
48:
49: -- Hold Release
50: TYPE Hold_Release_Rec_Type IS RECORD

Line 94: Line_Id OE_ORDER_LINES.LINE_ID%TYPE

90:
91: -- Header Rec
92: TYPE order_rec_type IS RECORD (
93: Header_Id OE_ORDER_HEADERS.HEADER_ID%TYPE,
94: Line_Id OE_ORDER_LINES.LINE_ID%TYPE
95: );
96:
97: TYPE order_tbl_type IS TABLE OF order_rec_type
98: INDEX BY BINARY_INTEGER;