DBA Data[Home] [Help]

APPS.OE_INVOICE_WF dependencies on OE_DEBUG_PUB

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

40: l_line_id NUMBER;
41: l_header_id NUMBER;
42: l_count NUMBER;
43: --
44: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
45: --
46:
47: l_order_number number; -- Added for bug 6704643
48:

Line 75: oe_debug_pub.add(' Sales Order : ' || l_order_number, 1);

71: where t2.line_id = l_line_id
72: and t1.header_id = t2.header_id;
73:
74: IF l_debug_level > 0 THEN
75: oe_debug_pub.add(' Sales Order : ' || l_order_number, 1);
76: END IF;
77: -- End of bug 6704643
78:
79:

Line 102: oe_debug_pub.add( 'Line is Invoiced, NOT invoicing any more ' ) ;

98:
99: IF( l_count <> 0) THEN
100: resultout := OE_GLOBALS.G_WFR_COMPLETE || ':' || OE_GLOBALS.G_WFR_COMPLETE ;
101: IF l_debug_level > 0 THEN
102: oe_debug_pub.add( 'Line is Invoiced, NOT invoicing any more ' ) ;
103: END IF;
104: OE_STANDARD_WF.Clear_Msg_Context;
105: RETURN;
106: END IF;

Line 121: oe_debug_pub.add(' Sales Order : ' || l_order_number, 1);

117: from oe_order_headers_all t1
118: where t1.header_id = l_header_id;
119:
120: IF l_debug_level > 0 THEN
121: oe_debug_pub.add(' Sales Order : ' || l_order_number, 1);
122: END IF;
123: -- End of bug 6704643
124:
125:

Line 148: oe_debug_pub.add( 'Lines in Header Invoiced, NOT invoicing any more ' ) ;

144:
145: IF( l_count <> 0) THEN
146: resultout := OE_GLOBALS.G_WFR_COMPLETE || ':' || OE_GLOBALS.G_WFR_COMPLETE ;
147: IF l_debug_level > 0 THEN
148: oe_debug_pub.add( 'Lines in Header Invoiced, NOT invoicing any more ' ) ;
149: END IF;
150: OE_STANDARD_WF.Clear_Msg_Context;
151: RETURN;
152: END IF;

Line 160: oe_debug_pub.add( 'INFO-L_RETURN_STATUS: '||L_RETURN_STATUS ) ;

156: , l_result_out
157: , l_return_status);
158: END IF;
159: IF l_debug_level > 0 THEN
160: oe_debug_pub.add( 'INFO-L_RETURN_STATUS: '||L_RETURN_STATUS ) ;
161: oe_debug_pub.add( 'INFO-L_RESULT_OUT: '||L_RESULT_OUT ) ;
162: END IF;
163: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
164: IF l_result_out = OE_GLOBALS.G_WFR_NOT_ELIGIBLE THEN

Line 161: oe_debug_pub.add( 'INFO-L_RESULT_OUT: '||L_RESULT_OUT ) ;

157: , l_return_status);
158: END IF;
159: IF l_debug_level > 0 THEN
160: oe_debug_pub.add( 'INFO-L_RETURN_STATUS: '||L_RETURN_STATUS ) ;
161: oe_debug_pub.add( 'INFO-L_RESULT_OUT: '||L_RESULT_OUT ) ;
162: END IF;
163: IF l_return_status = FND_API.G_RET_STS_SUCCESS THEN
164: IF l_result_out = OE_GLOBALS.G_WFR_NOT_ELIGIBLE THEN
165: resultout := OE_GLOBALS.G_WFR_COMPLETE ||':' || OE_GLOBALS.G_WFR_NOT_ELIGIBLE ;

Line 208: oe_debug_pub.add(resultout, 5);

204: g_defer_min := mod(g_defer_min + 0.5, 4.5);
205: END IF;
206:
207: IF l_debug_level > 0 THEN
208: oe_debug_pub.add(resultout, 5);
209: END IF;
210:
211: RETURN;
212: ELSIF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 225: oe_debug_pub.add('OEXWINVB.pls - in unexpected error raise exception');

221: --OE_STANDARD_WF.Clear_Msg_Context;
222: -- commit; -- messages were not saved without this
223: -- end data fix project
224: IF l_debug_level > 0 THEN
225: oe_debug_pub.add('OEXWINVB.pls - in unexpected error raise exception');
226: END IF;
227: --resultout := OE_GLOBALS.G_WFR_COMPLETE || ':' || OE_GLOBALS.G_WFR_INCOMPLETE;
228: --return;
229: app_exception.raise_exception;