DBA Data[Home] [Help]

APPS.OE_INVOICE_PUB dependencies on OE_VERIFY_PAYMENT_PUB

Line 7306: l_pay_method_id := OE_Verify_Payment_PUB.Get_Primary_Pay_Method

7302: IF l_debug_level > 0 THEN
7303: oe_debug_pub.add( 'GETTING PRIMAY PAYMENT METHOD' , 5 ) ;
7304: END IF;
7305:
7306: l_pay_method_id := OE_Verify_Payment_PUB.Get_Primary_Pay_Method
7307: ( p_header_rec => p_header_rec ) ;
7308: IF l_debug_level > 0 THEN
7309: oe_debug_pub.add( 'AFTER GETTING PRIMARY PAYMENT METHOD' , 5 ) ;
7310: END IF;

Line 7322: OE_Verify_Payment_PUB.Get_Pay_Method_Info

7318: oe_debug_pub.add( 'PAYMENT METHOD IS VALID' ) ;
7319: -- Call Get Pay Method Info to get the method name
7320: oe_debug_pub.add( 'GET PAYMENT METHOD INFORMATION ' , 5 ) ;
7321: END IF;
7322: OE_Verify_Payment_PUB.Get_Pay_Method_Info
7323: ( p_pay_method_id => l_pay_method_id
7324: , p_pay_method_name => l_pay_method_name
7325: , p_merchant_id => l_merchant_id
7326: ) ;

Line 7341: OE_Verify_Payment_PUB.Fetch_Current_Auth

7337: oe_debug_pub.add( 'CREDIT CARD APPROVAL CODE EXISTS' , 5 ) ;
7338: -- Call Fetch Current Auth to get the tangible id
7339: oe_debug_pub.add( 'FETCH CURRENT AUTHORIZATION CODE , IF ANY' , 5 ) ;
7340: END IF;
7341: OE_Verify_Payment_PUB.Fetch_Current_Auth
7342: ( p_header_rec => p_header_rec
7343: , p_trxn_id => l_trxn_id
7344: , p_tangible_id => l_tangible_id
7345: ) ;

Line 7564: --bug3906851 getting the tangible_id from oe_verify_payment_pub.fetch_current_auth if it is null

7560: -- comment out the following code for R12 cc encryption
7561: /*
7562: IF l_credit_card_approval_code IS NOT NULL THEN
7563: p_x_interface_line_rec.approval_code := l_credit_card_approval_code;
7564: --bug3906851 getting the tangible_id from oe_verify_payment_pub.fetch_current_auth if it is null
7565: IF l_tangible_id IS NULL THEN
7566:
7567: OE_Verify_Payment_PUB.Fetch_Current_Auth
7568: ( p_header_rec => p_header_rec

Line 7567: OE_Verify_Payment_PUB.Fetch_Current_Auth

7563: p_x_interface_line_rec.approval_code := l_credit_card_approval_code;
7564: --bug3906851 getting the tangible_id from oe_verify_payment_pub.fetch_current_auth if it is null
7565: IF l_tangible_id IS NULL THEN
7566:
7567: OE_Verify_Payment_PUB.Fetch_Current_Auth
7568: ( p_header_rec => p_header_rec
7569: , p_trxn_id => l_trxn_id
7570: , p_tangible_id => l_tangible_id
7571: ) ;

Line 7839: IF OE_VERIFY_PAYMENT_PUB.Get_CC_Rev_Reauth_Code(p_line_rec.header_id) IS NOT NULL THEN

7835: , last_update_date = sysdate --BUG#9539541
7836: , last_updated_by = NVL(oe_standard_wf.g_user_id, fnd_global.user_id) --BUG#9539541
7837: WHERE LINE_ID = p_line_rec.line_id;
7838: --CC Reversal ER#16014135 Start
7839: IF OE_VERIFY_PAYMENT_PUB.Get_CC_Rev_Reauth_Code(p_line_rec.header_id) IS NOT NULL THEN
7840:
7841: IF l_debug_level > 0 THEN
7842: oe_debug_pub.add( 'Credit card reversal ER is check begin ', 5 ) ;
7843: END IF;