DBA Data[Home] [Help]

APPS.OE_DS_PVT dependencies on OE_SHIPPING_INTEGRATION_PUB

Line 2427: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;

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);
2431: l_fulfilled_flag varchar2(1);

Line 2483: oe_debug_pub.add('Calling OE_Shipping_Integration_PUB.Get_Tolerance to check the tolerances' ,3);

2479: l_cal_tolerance_tbl(1).line_id := p_line_rec.line_id;
2480: l_cal_tolerance_tbl(1).quantity_to_be_shipped := p_add_to_shipped;
2481: l_cal_tolerance_tbl(1).shipping_uom := p_line_rec.order_quantity_uom;
2482: IF l_debug_level > 0 THEN
2483: oe_debug_pub.add('Calling OE_Shipping_Integration_PUB.Get_Tolerance to check the tolerances' ,3);
2484: END IF;
2485:
2486: OE_Shipping_Integration_PUB.Get_Tolerance(
2487: p_api_version_number => 1.0,

Line 2486: OE_Shipping_Integration_PUB.Get_Tolerance(

2482: IF l_debug_level > 0 THEN
2483: oe_debug_pub.add('Calling OE_Shipping_Integration_PUB.Get_Tolerance to check the tolerances' ,3);
2484: END IF;
2485:
2486: OE_Shipping_Integration_PUB.Get_Tolerance(
2487: p_api_version_number => 1.0,
2488: p_cal_tolerance_tbl => l_cal_tolerance_tbl,
2489: x_update_tolerance_flag => l_update_tolerance_flag,
2490: x_ship_tolerance => l_new_tolerance_below,

Line 2500: oe_debug_pub.add('OE_Shipping_Integration_PUB.Get_Tolerance returned Error', 1 ) ;

2496: x_msg_data => l_msg_data);
2497:
2498: IF l_cal_tolr_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2499: IF l_debug_level > 0 THEN
2500: oe_debug_pub.add('OE_Shipping_Integration_PUB.Get_Tolerance returned Error', 1 ) ;
2501: END IF;
2502: x_return_status := FND_API.G_RET_STS_ERROR;
2503: return;
2504: END IF;