DBA Data[Home] [Help]

APPS.OE_PAYMENT_ASSURANCE_WF dependencies on OE_DEBUG_PUB

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

13: l_return_status VARCHAR2(30);
14: l_result_out VARCHAR2(240);
15: l_msg_count NUMBER;
16: l_msg_data VARCHAR2(2000);
17: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
18:
19: --Exception Management begin
20: l_header_id NUMBER;
21: l_order_source_id NUMBER;

Line 38: oe_debug_pub.add( 'ENTERING OE_Payment_Assurance_WF.Start_Payment_Assurance '||ITEMTYPE||'/'||ITEMKEY , 1 ) ;

34: -- RUN mode - normal process execution
35: --
36:
37: IF l_debug_level > 0 THEN
38: oe_debug_pub.add( 'ENTERING OE_Payment_Assurance_WF.Start_Payment_Assurance '||ITEMTYPE||'/'||ITEMKEY , 1 ) ;
39: END IF;
40:
41: IF NOT OE_PREPAYMENT_UTIL.IS_MULTIPLE_PAYMENTS_ENABLED THEN
42: IF l_debug_level > 0 THEN

Line 43: oe_debug_pub.add('OEXWMPMB: multiple payments is not enabled. ', 3 ) ;

39: END IF;
40:
41: IF NOT OE_PREPAYMENT_UTIL.IS_MULTIPLE_PAYMENTS_ENABLED THEN
42: IF l_debug_level > 0 THEN
43: oe_debug_pub.add('OEXWMPMB: multiple payments is not enabled. ', 3 ) ;
44: END IF;
45: resultout := 'COMPLETE:NOT_ELIGIBLE';
46: return;
47: END IF;

Line 149: oe_debug_pub.add('OEXWMPMB: there is no prepayment on this order. ', 3 ) ;

145: OE_PREPAYMENT_UTIL.Get_Installment_Options <> 'ENABLE_PAY_NOW' THEN
146: OE_STANDARD_WF.Clear_Msg_Context;
147: resultout := 'COMPLETE:NOT_ELIGIBLE';
148: IF l_debug_level > 0 THEN
149: oe_debug_pub.add('OEXWMPMB: there is no prepayment on this order. ', 3 ) ;
150: END IF;
151: RETURN;
152: END IF;
153:

Line 165: oe_debug_pub.add( 'OEXWMPMB: return_status after calling Check_Holds is: '||l_return_status, 3 ) ;

161: x_msg_count => l_msg_count,
162: x_msg_data => l_msg_data);
163:
164: IF l_debug_level > 0 THEN
165: oe_debug_pub.add( 'OEXWMPMB: return_status after calling Check_Holds is: '||l_return_status, 3 ) ;
166: oe_debug_pub.add( 'OEXWMPMB, result_out after calling Check_Holds is: '||l_result_out, 3 ) ;
167: END IF;
168:
169: IF ( l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN

Line 166: oe_debug_pub.add( 'OEXWMPMB, result_out after calling Check_Holds is: '||l_result_out, 3 ) ;

162: x_msg_data => l_msg_data);
163:
164: IF l_debug_level > 0 THEN
165: oe_debug_pub.add( 'OEXWMPMB: return_status after calling Check_Holds is: '||l_return_status, 3 ) ;
166: oe_debug_pub.add( 'OEXWMPMB, result_out after calling Check_Holds is: '||l_result_out, 3 ) ;
167: END IF;
168:
169: IF ( l_return_status <> FND_API.G_RET_STS_SUCCESS) THEN
170: OE_STANDARD_WF.Save_Messages;

Line 182: oe_debug_pub.add('OEXWMPMB: return status from update_flow_status_code '||l_return_status , 3 ) ;

178: p_flow_status_code => 'PAYMENT_ASSURANCE_HOLD',
179: x_return_status => l_return_status);
180:
181: IF l_debug_level > 0 THEN
182: oe_debug_pub.add('OEXWMPMB: return status from update_flow_status_code '||l_return_status , 3 ) ;
183: END IF;
184: IF l_return_status = FND_API.G_RET_STS_UNEXP_ERROR THEN
185: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
186: ELSIF l_return_status = FND_API.G_RET_STS_ERROR THEN

Line 194: oe_debug_pub.add( 'Start_Payment_Assurance , line_id is: '||l_line_id, 1 ) ;

190: RETURN;
191: END IF;
192:
193: IF l_debug_level > 0 THEN
194: oe_debug_pub.add( 'Start_Payment_Assurance , line_id is: '||l_line_id, 1 ) ;
195: END IF;
196:
197: OE_PrePayment_Pvt.Process_Payment_Assurance
198: ( p_api_version_number => 1.0

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

268: l_msg_count NUMBER;
269:
270: l_msg_data VARCHAR2(2000);
271:
272: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
273:
274: BEGIN
275: If l_debug_level > 0 Then
276: oe_debug_pub.add('Entering OE_Payment_Assurance_WF.Payment_Receipt');

Line 276: oe_debug_pub.add('Entering OE_Payment_Assurance_WF.Payment_Receipt');

272: l_debug_level CONSTANT NUMBER := oe_debug_pub.g_debug_level;
273:
274: BEGIN
275: If l_debug_level > 0 Then
276: oe_debug_pub.add('Entering OE_Payment_Assurance_WF.Payment_Receipt');
277: End If;
278: --
279: -- RUN mode - normal process execution
280: --