DBA Data[Home] [Help]

APPS.OE_SHIPPING_INTEGRATION_PVT dependencies on OE_ORDER_PUB

Line 33: (p_line_tbl IN OE_Order_PUB.Line_Tbl_Type

29: TYPE Shipment_Tbl_Type IS TABLE OF Shipment_Rec_Type
30: INDEX BY BINARY_INTEGER;
31:
32: PROCEDURE Call_Process_Order
33: (p_line_tbl IN OE_Order_PUB.Line_Tbl_Type
34: ,p_control_rec IN OE_GLOBALS.Control_Rec_Type DEFAULT OE_GLOBALS.G_MISS_CONTROL_REC
35: ,p_process_requests IN BOOLEAN := FALSE
36: ,x_return_status OUT NOCOPY VARCHAR2
37:

Line 87: , p_x_line_tbl IN OUT NOCOPY OE_Order_PUB.Line_Tbl_Type

83: --
84: PROCEDURE Get_PTO_Shipped_Quantity
85: (
86: p_top_model_line_id IN NUMBER DEFAULT FND_API.G_MISS_NUM
87: , p_x_line_tbl IN OUT NOCOPY OE_Order_PUB.Line_Tbl_Type
88: , x_ratio_status OUT NOCOPY VARCHAR2
89:
90: , x_return_status OUT NOCOPY VARCHAR2
91:

Line 134: -- Parameters : p_update_lines_tb IN OE_Order_Pub.Request_Tbl_Type Required

130: -- and hold check if the line has reached to SHIP_LINE work
131: -- activity and will call
132: -- WSH_INTERFACE.Update_Shipping_Attributes API to inform
133: -- Shipping about any changes which have taken place in OE.
134: -- Parameters : p_update_lines_tb IN OE_Order_Pub.Request_Tbl_Type Required
135: -- A table of record with line_id's for which shipping
136: -- update API needs to be called.
137: -- Version : Current version = 1.0
138: -- Initial version = 1.0

Line 143: p_update_lines_tbl IN OE_ORDER_PUB.Request_Tbl_Type

139: -- End of Comments
140: --
141: PROCEDURE Update_Shipping_From_OE
142: (
143: p_update_lines_tbl IN OE_ORDER_PUB.Request_Tbl_Type
144: , x_return_status OUT NOCOPY VARCHAR2
145:
146: );
147:

Line 168: p_line_rec IN OE_Order_Pub.Line_Rec_Type

164: -- End of Comments
165: --
166: PROCEDURE Check_Shipment_Line
167: (
168: p_line_rec IN OE_Order_Pub.Line_Rec_Type
169: , p_shipped_quantity IN NUMBER DEFAULT 0
170: , x_result_out OUT NOCOPY VARCHAR2
171:
172: );

Line 225: -- p_line_rec IN OE_order_Pub.line_rec_type

221: -- the line if the line has been shipped partially.
222: -- Parameters : p_line_id IN NUMBER
223: -- The line_id of the line for which ship confirmation
224: -- needs to be performed.
225: -- p_line_rec IN OE_order_Pub.line_rec_type
226: -- The line record for the line for which ship confirmation
227: -- needs to be performed.
228: -- p_shipment_status IN VARCHAR2
229: -- The shipment status of the line if known.

Line 237: ,p_line_rec IN OE_ORDER_PUB.line_rec_type

233: --
234:
235: PROCEDURE Ship_Confirm_Standard_Line
236: (p_line_id IN NUMBER DEFAULT FND_API.G_MISS_NUM
237: ,p_line_rec IN OE_ORDER_PUB.line_rec_type
238: DEFAULT OE_ORDER_PUB.G_MISS_LINE_REC
239: ,p_shipment_status IN VARCHAR2 DEFAULT FND_API.G_MISS_CHAR
240: ,p_check_line_set IN VARCHAR2 := 'Y'
241: , x_return_status OUT NOCOPY VARCHAR2

Line 238: DEFAULT OE_ORDER_PUB.G_MISS_LINE_REC

234:
235: PROCEDURE Ship_Confirm_Standard_Line
236: (p_line_id IN NUMBER DEFAULT FND_API.G_MISS_NUM
237: ,p_line_rec IN OE_ORDER_PUB.line_rec_type
238: DEFAULT OE_ORDER_PUB.G_MISS_LINE_REC
239: ,p_shipment_status IN VARCHAR2 DEFAULT FND_API.G_MISS_CHAR
240: ,p_check_line_set IN VARCHAR2 := 'Y'
241: , x_return_status OUT NOCOPY VARCHAR2
242: