DBA Data[Home] [Help]

APPS.OE_COGS_GRP dependencies on OE_DEBUG_PUB

Line 73: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;

69: l_master_org_id NUMBER;
70: l_master_org varchar2(30) := 'MASTER_ORGANIZATION_ID';
71: l_line_rec OE_ORDER_PUB.LINE_REC_TYPE;
72: l_notify_costing VARCHAR2(1);
73: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
74:
75: BEGIN
76:
77: l_line_rec := oe_line_util.query_row(p_line_id);

Line 85: oe_debug_pub.add( 'is revenue line: return/retrobill/internal/cancelled: returning N' , 1 ) ;

81: OR l_line_rec.source_document_type_id = 10
82: OR l_line_rec.cancelled_flag = 'Y' ) THEN
83:
84: IF l_debug_level > 0 THEN
85: oe_debug_pub.add( 'is revenue line: return/retrobill/internal/cancelled: returning N' , 1 ) ;
86: END IF;
87:
88: RETURN 'N';
89:

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:

Line 135: oe_debug_pub.add( 'is revenue line: model component: l_child='||l_child||' shipped_quantity='||l_line_rec.shipped_quantity||' returning Y' , 1 ) ;

131: END;
132:
133: IF l_child = 'Y' OR l_line_rec.shipped_quantity IS NOT NULL THEN
134: IF l_debug_level > 0 THEN
135: oe_debug_pub.add( 'is revenue line: model component: l_child='||l_child||' shipped_quantity='||l_line_rec.shipped_quantity||' returning Y' , 1 ) ;
136: END IF;
137:
138: RETURN 'Y';
139:

Line 146: oe_debug_pub.add( 'is revenue line: returning N', 1);

142: END IF; -- top model line or invoiceable line
143: END IF; -- part of a model;
144: END IF;
145: IF l_debug_level > 0 THEN
146: oe_debug_pub.add( 'is revenue line: returning N', 1);
147: END IF;
148: RETURN 'N';
149:
150: EXCEPTION WHEN OTHERS THEN