DBA Data[Home] [Help]

APPS.OE_VALIDATE_LINE dependencies on OE_ORDER_WF_UTIL

Line 1230: l_new_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_line_rec);

1226:
1227:
1228: IF p_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
1229:
1230: l_new_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_line_rec);
1231: l_old_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_old_line_rec);
1232:
1233: IF NOT OE_Globals.Equal(l_new_wf_item_type, l_old_wf_item_type)
1234: THEN

Line 1231: l_old_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_old_line_rec);

1227:
1228: IF p_line_rec.operation = OE_GLOBALS.G_OPR_UPDATE THEN
1229:
1230: l_new_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_line_rec);
1231: l_old_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_old_line_rec);
1232:
1233: IF NOT OE_Globals.Equal(l_new_wf_item_type, l_old_wf_item_type)
1234: THEN
1235: oe_debug_pub.add('workflow item type changed', 1);

Line 1248: -- litemtype := OE_Order_WF_Util.get_wf_item_type(p_line_rec);

1244: OR (NOT OE_GLOBALS.EQUAL(p_line_rec.item_type_code,p_old_line_rec.item_type_code))
1245: THEN
1246:
1247: -- Get Wf itme type
1248: -- litemtype := OE_Order_WF_Util.get_wf_item_type(p_line_rec);
1249:
1250: OPEN Get_Order_Type;
1251: FETCH Get_Order_Type
1252: INTO lorder_type_id;

Line 1279: l_new_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_line_rec);

1275: END IF;
1276: ELSIF p_line_rec.operation = OE_GLOBALS.G_OPR_CREATE THEN
1277:
1278: IF p_line_rec.ITEM_TYPE_CODE = OE_GLOBALS.G_ITEM_CONFIG THEN
1279: l_new_wf_item_type := OE_Order_WF_Util.get_wf_item_type(p_line_rec);
1280:
1281: OPEN Get_Order_Type;
1282: FETCH Get_Order_Type
1283: INTO lorder_type_id;

Line 5576: l_item_type_code2 := OE_Order_Wf_Util.get_wf_item_type(p_line_rec);

5572: (p_line_rec.reference_line_id <> nvl(p_old_line_rec.reference_line_id,-99)
5573: OR NOT OE_GLOBALS.equal(p_line_rec.order_quantity_uom,p_old_line_rec.order_quantity_uom ))
5574: THEN
5575: --for bug10631972
5576: l_item_type_code2 := OE_Order_Wf_Util.get_wf_item_type(p_line_rec);
5577: IF l_debug_level > 0 then
5578: oe_debug_pub.add('14_aa_1 l_item_type_code2: '|| l_item_type_code2, 1);
5579: END IF;
5580: --end bug10631972