DBA Data[Home] [Help]

APPS.OE_COGS_GRP dependencies on STANDARD

Line 105: -- for a standard line or a top model line,

101: x_revenue_event_line_id := l_line_id;
102:
103: ELSIF l_line_rec.link_to_line_id IS NULL THEN
104:
105: -- for a standard line or a top model line,
106: -- the revenue event line is itself
107: -- for an included item, if non of its parent is invoicable,
108: -- the revenue event line will be the top model line
109:

Line 198: AND l_line_rec.item_type_code = 'STANDARD'

194:
195: IF l_line_rec.invoiced_quantity IS NULL OR l_line_rec.invoiced_quantity = 0 THEN
196:
197: IF l_line_rec.top_model_line_id IS NULL
198: AND l_line_rec.item_type_code = 'STANDARD'
199: AND l_line_rec.shipped_quantity IS NOT NULL THEN
200: IF l_debug_level > 0 THEN
201: oe_debug_pub.add( 'is revenue line: standard shippable: returning Y' , 1 ) ;
202: END IF;

Line 201: oe_debug_pub.add( 'is revenue line: standard shippable: returning Y' , 1 ) ;

197: IF l_line_rec.top_model_line_id IS NULL
198: AND l_line_rec.item_type_code = 'STANDARD'
199: AND l_line_rec.shipped_quantity IS NOT NULL THEN
200: IF l_debug_level > 0 THEN
201: oe_debug_pub.add( 'is revenue line: standard shippable: returning Y' , 1 ) ;
202: END IF;
203:
204: RETURN 'Y';
205: