DBA Data[Home] [Help]

APPS.OE_SHIPPING_INTEGRATION_PVT dependencies on OE_LINE_UTIL

Line 379: OE_Line_Util.Query_Row --bug 4516453, moved query_row here to set msg context

375:
376: l_line_id := p_update_lines_tbl(l_line_index).entity_id;
377: l_line_at_shipping := FND_API.G_FALSE;
378:
379: OE_Line_Util.Query_Row --bug 4516453, moved query_row here to set msg context
380: ( p_line_id => l_line_id,
381: x_line_rec => l_line_rec);
382: --- setting the msg context
383: OE_MSG_PUB.set_msg_context(

Line 532: OE_Line_Util.Query_Row

528: END IF;
529: END IF; -- if param4 is true
530:
531: /* the code has been moved up for bug 4516453 to set msg context
532: OE_Line_Util.Query_Row
533: ( p_line_id => l_line_id,
534: x_line_rec => l_line_rec); */
535:
536:

Line 897: IF oe_line_util.dual_uom_control -- INVCONV Process_Characteristics

893: END IF;
894: RAISE FND_API.G_EXC_ERROR;
895: END IF; */
896:
897: IF oe_line_util.dual_uom_control -- INVCONV Process_Characteristics
898: (l_line_rec.inventory_item_id,l_line_rec.ship_from_org_id,l_item_rec) THEN
899: IF l_item_rec.tracking_quantity_ind = 'PS' THEN -- INVCONV
900: -- IF (l_ic_item_mst_rec.dualum_ind > 0) THEN -- ONVCONV
901: l_changed_attributes(l_shp_index).ordered_quantity2 := 0;

Line 3347: OE_Line_Util.Query_Row(p_line_id => p_line_id,

3343: IF l_debug_level > 0 THEN
3344: oe_debug_pub.add( 'line_id '||P_LINE_ID , 3 ) ;
3345: END IF;
3346:
3347: OE_Line_Util.Query_Row(p_line_id => p_line_id,
3348: x_line_rec => l_line_rec);
3349: END IF;
3350:
3351:

Line 3485: AND oe_line_util.dual_uom_control -- INVCONV

3481: -- HW OPM BUG#:2415731. Is shipped_uom different from order_uom,
3482: -- if so, we need to perform item specific conversion Not sure if need this RIGHT NOW cos converted above in misc convert
3483:
3484: IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3485: AND oe_line_util.dual_uom_control -- INVCONV
3486: (l_line_tbl(1).inventory_item_id
3487: ,l_line_tbl(1).ship_from_org_id
3488: ,l_item_rec) THEN
3489:

Line 3567: -- AND oe_line_util.Process_Characteristics

3563: END IF;
3564:
3565: END IF; -- end of uoms are different
3566: -- IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3567: -- AND oe_line_util.Process_Characteristics
3568: -- HW end of changes for BUG#: 2415731
3569:
3570: l_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;
3571: l_line_tbl(1).split_action_code := 'SPLIT';

Line 3629: -- AND oe_line_util.Process_Characteristics end of branching

3625: l_line_tbl(2).ordered_quantity2 := NULL;
3626: END IF;
3627:
3628: END IF; -- IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3629: -- AND oe_line_util.Process_Characteristics end of branching
3630: -- HW end of changes 2415731
3631:
3632:
3633: l_line_tbl(2).operation := OE_GLOBALS.G_OPR_CREATE;

Line 4007: OE_Line_Util.Query_Row

4003: l_line_id := p_line_id;
4004:
4005: -- Call Process Order to Update the MODEL SHIPPED Quantity
4006:
4007: OE_Line_Util.Query_Row
4008: (p_line_id => p_line_id,
4009: x_line_rec => l_line_rec);
4010:
4011: IF g_debug_call > 0 THEN

Line 4014: OE_Line_Util.Query_Rows

4010:
4011: IF g_debug_call > 0 THEN
4012: G_DEBUG_MSG := G_DEBUG_MSG || '10-5';
4013: END IF;
4014: OE_Line_Util.Query_Rows
4015: (p_line_id => l_line_rec.top_model_line_id,
4016: x_line_tbl => l_update_line_tbl);
4017:
4018: l_control_rec := OE_GLOBALS.G_MISS_CONTROL_REC;