DBA Data[Home] [Help]

APPS.OE_SPLIT_UTIL dependencies on STANDARD

Line 1493: -- Populating ato line id for a standard ato item

1489: l_line_rec.ato_line_id := l_line_rec.line_id;
1490: END IF;
1491: END IF;
1492: END IF;
1493: -- Populating ato line id for a standard ato item
1494: IF (l_line_rec.Item_Type_Code = 'STANDARD' AND
1495: l_line_rec.ato_line_id IS NOT NULL) THEN
1496: l_line_rec.ato_line_id := l_line_rec.line_id;
1497: END IF;

Line 1494: IF (l_line_rec.Item_Type_Code = 'STANDARD' AND

1490: END IF;
1491: END IF;
1492: END IF;
1493: -- Populating ato line id for a standard ato item
1494: IF (l_line_rec.Item_Type_Code = 'STANDARD' AND
1495: l_line_rec.ato_line_id IS NOT NULL) THEN
1496: l_line_rec.ato_line_id := l_line_rec.line_id;
1497: END IF;
1498: -- The px_line_rec is the image of original line. IF the parent is ato then

Line 1675: IF (L_line_rec.item_type_code <> 'STANDARD' AND

1671: oe_debug_pub.add( 'ITEM TYPE CODE : '|| L_LINE_REC.ITEM_TYPE_CODE ) ;
1672: END IF;
1673: IF nvl(L_line_rec.model_remnant_flag,'N') <> 'Y'
1674: THEN
1675: IF (L_line_rec.item_type_code <> 'STANDARD' AND
1676: L_line_rec.item_type_code <> 'MODEL' AND
1677: L_line_rec.Item_type_code <> 'KIT' AND
1678: NOT (nvl(L_line_rec.ato_line_id,-99) = l_line_rec.line_id AND L_line_rec.item_type_code = 'CLASS' ))
1679: THEN

Line 2503: -- Following loop takes care of that. The loop is coded taking Models, Standard

2499: -- the service lines if split attributes are modified in the order lines to which
2500: -- they refer to.
2501: -- In order to make the Process Order API handle the service lines, the service
2502: -- lines are explicitly being bundled with the order lines in the l_line_tbl. The
2503: -- Following loop takes care of that. The loop is coded taking Models, Standard
2504: -- items and Kits into consideration
2505: -- Local variables j, k, l_rec_count have been added. The variables j, k
2506: -- are used as a loop indices, and l_rec_count is used to work on the l_line_tbl.
2507: --