DBA Data[Home] [Help]

APPS.OE_SPLIT_UTIL dependencies on STANDARD

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

1824: l_line_rec.ato_line_id := l_line_rec.line_id;
1825: --end bug11714193
1826: END IF;
1827: END IF;
1828: -- Populating ato line id for a standard ato item
1829: IF (l_line_rec.Item_Type_Code = 'STANDARD' AND
1830: l_line_rec.ato_line_id IS NOT NULL) THEN
1831: l_line_rec.ato_line_id := l_line_rec.line_id;
1832: END IF;

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

1825: --end bug11714193
1826: END IF;
1827: END IF;
1828: -- Populating ato line id for a standard ato item
1829: IF (l_line_rec.Item_Type_Code = 'STANDARD' AND
1830: l_line_rec.ato_line_id IS NOT NULL) THEN
1831: l_line_rec.ato_line_id := l_line_rec.line_id;
1832: END IF;
1833: -- The px_line_rec is the image of original line. IF the parent is ato then

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

2006: oe_debug_pub.add( 'ITEM TYPE CODE : '|| L_LINE_REC.ITEM_TYPE_CODE ) ;
2007: END IF;
2008: IF nvl(L_line_rec.model_remnant_flag,'N') <> 'Y'
2009: THEN
2010: IF (L_line_rec.item_type_code <> 'STANDARD' AND
2011: L_line_rec.item_type_code <> 'MODEL' AND
2012: L_line_rec.Item_type_code <> 'KIT' AND
2013: NOT (nvl(L_line_rec.ato_line_id,-99) = l_line_rec.line_id AND L_line_rec.item_type_code = 'CLASS' ))
2014: THEN

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

2930: -- the service lines if split attributes are modified in the order lines to which
2931: -- they refer to.
2932: -- In order to make the Process Order API handle the service lines, the service
2933: -- lines are explicitly being bundled with the order lines in the l_line_tbl. The
2934: -- Following loop takes care of that. The loop is coded taking Models, Standard
2935: -- items and Kits into consideration
2936: -- Local variables j, k, l_rec_count have been added. The variables j, k
2937: -- are used as a loop indices, and l_rec_count is used to work on the l_line_tbl.
2938: --