DBA Data[Home] [Help]

APPS.OE_COGS_GRP dependencies on STANDARD

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

27: x_revenue_event_line_id := l_line_id;
28:
29: ELSIF l_line_rec.link_to_line_id IS NULL THEN
30:
31: -- for a standard line or a top model line,
32: -- the revenue event line is itself
33: -- for an included item, if non of its parent is invoicable,
34: -- the revenue event line will be the top model line
35:

Line 98: AND l_line_rec.item_type_code = 'STANDARD'

94:
95: IF l_line_rec.invoiced_quantity IS NULL OR l_line_rec.invoiced_quantity = 0 THEN
96:
97: IF l_line_rec.top_model_line_id IS NULL
98: AND l_line_rec.item_type_code = 'STANDARD'
99: AND l_line_rec.shipped_quantity IS NOT NULL THEN
100: IF l_debug_level > 0 THEN
101: oe_debug_pub.add( 'is revenue line: standard shippable: returning Y' , 1 ) ;
102: END IF;

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

97: IF l_line_rec.top_model_line_id IS NULL
98: AND l_line_rec.item_type_code = 'STANDARD'
99: AND l_line_rec.shipped_quantity IS NOT NULL THEN
100: IF l_debug_level > 0 THEN
101: oe_debug_pub.add( 'is revenue line: standard shippable: returning Y' , 1 ) ;
102: END IF;
103:
104: RETURN 'Y';
105: