DBA Data[Home] [Help]

APPS.OE_SHIPPING_INTEGRATION_PVT dependencies on OE_LINE_UTIL

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

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

Line 534: OE_Line_Util.Query_Row

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

Line 899: IF oe_line_util.dual_uom_control -- INVCONV Process_Characteristics

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

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

3355: IF l_debug_level > 0 THEN
3356: oe_debug_pub.add( 'line_id '||P_LINE_ID , 3 ) ;
3357: END IF;
3358:
3359: OE_Line_Util.Query_Row(p_line_id => p_line_id,
3360: x_line_rec => l_line_rec);
3361: END IF;
3362:
3363:

Line 3497: AND oe_line_util.dual_uom_control -- INVCONV

3493: -- HW OPM BUG#:2415731. Is shipped_uom different from order_uom,
3494: -- if so, we need to perform item specific conversion Not sure if need this RIGHT NOW cos converted above in misc convert
3495:
3496: IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3497: AND oe_line_util.dual_uom_control -- INVCONV
3498: (l_line_tbl(1).inventory_item_id
3499: ,l_line_tbl(1).ship_from_org_id
3500: ,l_item_rec) THEN
3501:

Line 3579: -- AND oe_line_util.Process_Characteristics

3575: END IF;
3576:
3577: END IF; -- end of uoms are different
3578: -- IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3579: -- AND oe_line_util.Process_Characteristics
3580: -- HW end of changes for BUG#: 2415731
3581:
3582: l_line_tbl(1).operation := OE_GLOBALS.G_OPR_UPDATE;
3583: l_line_tbl(1).split_action_code := 'SPLIT';

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

3637: l_line_tbl(2).ordered_quantity2 := NULL;
3638: END IF;
3639:
3640: END IF; -- IF ( l_line_tbl(1).shipping_quantity_uom <> l_line_tbl(1).order_quantity_uom )
3641: -- AND oe_line_util.Process_Characteristics end of branching
3642: -- HW end of changes 2415731
3643:
3644:
3645: l_line_tbl(2).operation := OE_GLOBALS.G_OPR_CREATE;

Line 4019: OE_Line_Util.Query_Row

4015: l_line_id := p_line_id;
4016:
4017: -- Call Process Order to Update the MODEL SHIPPED Quantity
4018:
4019: OE_Line_Util.Query_Row
4020: (p_line_id => p_line_id,
4021: x_line_rec => l_line_rec);
4022:
4023: IF g_debug_call > 0 THEN

Line 4026: OE_Line_Util.Query_Rows

4022:
4023: IF g_debug_call > 0 THEN
4024: G_DEBUG_MSG := G_DEBUG_MSG || '10-5';
4025: END IF;
4026: OE_Line_Util.Query_Rows
4027: (p_line_id => l_line_rec.top_model_line_id,
4028: x_line_tbl => l_update_line_tbl);
4029:
4030: l_control_rec := OE_GLOBALS.G_MISS_CONTROL_REC;