DBA Data[Home] [Help]

APPS.OE_CONFIG_PRICE_UTIL dependencies on OE_GLOBALS

Line 259: l_line_rec.operation := OE_GLOBALS.G_OPR_CREATE;

255:
256: l_index := 0;
257: l_line_rec.header_id := l_model_line_rec.header_id;
258: l_line_rec.top_model_line_id := l_top_model_line_id;
259: l_line_rec.operation := OE_GLOBALS.G_OPR_CREATE;
260:
261: --recurring charges
262: IF OE_SYS_PARAMETERS.Value ('RECURRING_CHARGES') = 'Y' THEN
263: IF l_debug_level > 0 THEN

Line 293: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_CLASS;

289: IF l_defaulted_flag = 'Y' AND
290: l_part_of_container = 'N' THEN --recurring charges
291:
292: IF l_bom_item_type = 2 THEN
293: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_CLASS;
294: ELSIF l_bom_item_type = 4 and l_service_item_flag = 'Y' THEN
295: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_SERVICE;
296: ELSIF l_bom_item_type = 4 and l_pick_components_flag = 'Y' THEN
297: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_KIT;

Line 295: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_SERVICE;

291:
292: IF l_bom_item_type = 2 THEN
293: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_CLASS;
294: ELSIF l_bom_item_type = 4 and l_service_item_flag = 'Y' THEN
295: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_SERVICE;
296: ELSIF l_bom_item_type = 4 and l_pick_components_flag = 'Y' THEN
297: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_KIT;
298: ELSE
299: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_OPTION;

Line 297: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_KIT;

293: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_CLASS;
294: ELSIF l_bom_item_type = 4 and l_service_item_flag = 'Y' THEN
295: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_SERVICE;
296: ELSIF l_bom_item_type = 4 and l_pick_components_flag = 'Y' THEN
297: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_KIT;
298: ELSE
299: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_OPTION;
300: END IF;
301: IF l_debug_level > 0 THEN

Line 299: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_OPTION;

295: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_SERVICE;
296: ELSIF l_bom_item_type = 4 and l_pick_components_flag = 'Y' THEN
297: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_KIT;
298: ELSE
299: l_line_rec.item_type_code := OE_GLOBALS.G_ITEM_OPTION;
300: END IF;
301: IF l_debug_level > 0 THEN
302: oe_debug_pub.add(L_SEQ_NBR||' HDR : '||L_LINE_REC.HEADER_ID,1);
303: oe_debug_pub.add('QTY: ' || L_LINE_REC.ORDERED_QUANTITY,1);