DBA Data[Home] [Help]

APPS.OE_DS_PVT dependencies on OE_SHIP_CONFIRMATION_PUB

Line 2464: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;

2460: ,x_msg_count OUT NOCOPY NUMBER
2461: ,x_msg_data OUT NOCOPY VARCHAR2
2462: )
2463: IS
2464: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2465: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2466: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2467: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2468: l_update_tolerance_flag varchar2(1);

Line 2465: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2461: ,x_msg_data OUT NOCOPY VARCHAR2
2462: )
2463: IS
2464: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2465: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2466: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2467: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2468: l_update_tolerance_flag varchar2(1);
2469: l_new_tolerance_below number;

Line 2466: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2462: )
2463: IS
2464: l_ship_adj_line OE_Ship_Confirmation_Pub.Ship_Adj_Rec_Type;
2465: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2466: l_non_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2467: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;
2468: l_update_tolerance_flag varchar2(1);
2469: l_new_tolerance_below number;
2470: l_ship_beyond_flag varchar2(1);

Line 2593: OE_Ship_Confirmation_Pub.Ship_Confirm_New

2589: l_non_bulk_ship_line.calculate_price_flag(1) := p_line_rec.calculate_price_flag;
2590: l_non_bulk_ship_line.source_type_code(1) := p_line_rec.source_type_code; -- Added for bug 6877315
2591:
2592: -- Calling Ship_confirm_new
2593: OE_Ship_Confirmation_Pub.Ship_Confirm_New
2594: ( P_ship_line_rec => l_non_bulk_ship_line,
2595: P_requested_line_rec => l_non_bulk_req_line,
2596: P_line_adj_rec => l_ship_adj_line, -- not used in non_bulk_mode
2597: P_bulk_mode => 'N',

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

2601: x_msg_data => l_msg_data,
2602: x_return_status => l_return_status);
2603:
2604: IF l_debug_level > 0 THEN
2605: oe_debug_pub.add('OEXVDSRB.pls: OE_Ship_Confirmation_Pub.Ship_Confirm_New return_status='||l_return_status,3);
2606: END IF;
2607:
2608: x_return_status := l_return_status;
2609: x_msg_data := l_msg_data;

Line 2621: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2617: END Call_Ship_Confirm_New;
2618:
2619: /*--------------------------------------------------------------+
2620: Name : Call_Process_Order
2621: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2622: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2623: Description : This procedure will be called from Drop Ship
2624: Receive. This will call process order for
2625: updating shipped quantity on the order line

Line 2622: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;

2618:
2619: /*--------------------------------------------------------------+
2620: Name : Call_Process_Order
2621: n_bulk_ship_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2622: l_non_bulk_req_line OE_Ship_Confirmation_Pub.Ship_Line_Rec_Type;
2623: Description : This procedure will be called from Drop Ship
2624: Receive. This will call process order for
2625: updating shipped quantity on the order line
2626: and complete the ship line activity

Line 2664: l_req_qty_tbl OE_Ship_Confirmation_Pub.Req_Quantity_Tbl_Type;

2660: l_Line_Price_Att_tbl OE_ORDER_PUB.Line_Price_Att_Tbl_Type;
2661: l_Line_Adj_Att_tbl OE_ORDER_PUB.Line_Adj_Att_Tbl_Type;
2662: l_Line_Adj_Assoc_tbl OE_ORDER_PUB.Line_Adj_Assoc_Tbl_Type;
2663:
2664: l_req_qty_tbl OE_Ship_Confirmation_Pub.Req_Quantity_Tbl_Type;
2665:
2666: l_new_line_id NUMBER;
2667: l_return_status VARCHAR2(1);
2668: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;