DBA Data[Home] [Help]

APPS.OE_DS_PVT dependencies on OE_SHIPPING_INTEGRATION_PUB

Line 2467: l_cal_tolerance_tbl OE_Shipping_Integration_PUB.Cal_Tolerance_Tbl_Type;

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

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

2519: l_cal_tolerance_tbl(1).line_id := p_line_rec.line_id;
2520: l_cal_tolerance_tbl(1).quantity_to_be_shipped := p_add_to_shipped;
2521: l_cal_tolerance_tbl(1).shipping_uom := p_line_rec.order_quantity_uom;
2522: IF l_debug_level > 0 THEN
2523: oe_debug_pub.add('Calling OE_Shipping_Integration_PUB.Get_Tolerance to check the tolerances' ,3);
2524: END IF;
2525:
2526: OE_Shipping_Integration_PUB.Get_Tolerance(
2527: p_api_version_number => 1.0,

Line 2526: OE_Shipping_Integration_PUB.Get_Tolerance(

2522: IF l_debug_level > 0 THEN
2523: oe_debug_pub.add('Calling OE_Shipping_Integration_PUB.Get_Tolerance to check the tolerances' ,3);
2524: END IF;
2525:
2526: OE_Shipping_Integration_PUB.Get_Tolerance(
2527: p_api_version_number => 1.0,
2528: p_cal_tolerance_tbl => l_cal_tolerance_tbl,
2529: x_update_tolerance_flag => l_update_tolerance_flag,
2530: x_ship_tolerance => l_new_tolerance_below,

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

2536: x_msg_data => l_msg_data);
2537:
2538: IF l_cal_tolr_return_status <> FND_API.G_RET_STS_SUCCESS THEN
2539: IF l_debug_level > 0 THEN
2540: oe_debug_pub.add('OE_Shipping_Integration_PUB.Get_Tolerance returned Error', 1 ) ;
2541: END IF;
2542: x_return_status := FND_API.G_RET_STS_ERROR;
2543: return;
2544: END IF;