DBA Data[Home] [Help]

APPS.OE_DS_PVT dependencies on OE_SHIP_CONFIRMATION_PUB

Line 2424: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;

2420: ,x_msg_count OUT NOCOPY NUMBER
2421: ,x_msg_data OUT NOCOPY VARCHAR2
2422: )
2423: IS
2424: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2425: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2426: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2427: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2428: l_update_tolerance_flag varchar2(1);

Line 2425: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2421: ,x_msg_data OUT NOCOPY VARCHAR2
2422: )
2423: IS
2424: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2425: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2426: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2427: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2428: l_update_tolerance_flag varchar2(1);
2429: l_new_tolerance_below number;

Line 2426: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2422: )
2423: IS
2424: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2425: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2426: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2427: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2428: l_update_tolerance_flag varchar2(1);
2429: l_new_tolerance_below number;
2430: l_ship_beyond_flag varchar2(1);

Line 2553: OE_Ship_Confirmation_Pub.Ship_Confirm_New

2549: l_non_bulk_ship_line.calculate_price_flag(1) := p_line_rec.calculate_price_flag;
2550: l_non_bulk_ship_line.source_type_code(1) := p_line_rec.source_type_code; -- Added for bug 6877315
2551:
2552: -- Calling Ship_confirm_new
2553: OE_Ship_Confirmation_Pub.Ship_Confirm_New
2554: ( P_ship_line_rec => l_non_bulk_ship_line,
2555: P_requested_line_rec => l_non_bulk_req_line,
2556: P_line_adj_rec => l_ship_adj_line, -- not used in non_bulk_mode
2557: P_bulk_mode => 'N',

Line 2565: oe_debug_pub.add('OEXVDSRB.pls: OE_Ship_Confirmation_Pub.Ship_Confirm_New return_status='||l_return_status,3);

2561: x_msg_data => l_msg_data,
2562: x_return_status => l_return_status);
2563:
2564: IF l_debug_level > 0 THEN
2565: oe_debug_pub.add('OEXVDSRB.pls: OE_Ship_Confirmation_Pub.Ship_Confirm_New return_status='||l_return_status,3);
2566: END IF;
2567:
2568: x_return_status := l_return_status;
2569: x_msg_data := l_msg_data;

Line 2581: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2577: END Call_Ship_Confirm_New;
2578:
2579: /*--------------------------------------------------------------+
2580: Name : Call_Process_Order
2581: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2582: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2583: Description : This procedure will be called from Drop Ship
2584: Receive. This will call process order for
2585: updating shipped quantity on the order line

Line 2582: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2578:
2579: /*--------------------------------------------------------------+
2580: Name : Call_Process_Order
2581: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2582: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2583: Description : This procedure will be called from Drop Ship
2584: Receive. This will call process order for
2585: updating shipped quantity on the order line
2586: and complete the ship line activity

Line 2624: l_req_qty_tbl OE_Ship_Confirmation_Pub.Req_Quantity_Tbl_Type;

2620: l_Line_Price_Att_tbl OE_ORDER_PUB.Line_Price_Att_Tbl_Type;
2621: l_Line_Adj_Att_tbl OE_ORDER_PUB.Line_Adj_Att_Tbl_Type;
2622: l_Line_Adj_Assoc_tbl OE_ORDER_PUB.Line_Adj_Assoc_Tbl_Type;
2623:
2624: l_req_qty_tbl OE_Ship_Confirmation_Pub.Req_Quantity_Tbl_Type;
2625:
2626: l_new_line_id NUMBER;
2627: l_return_status VARCHAR2(1);
2628: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;