DBA Data[Home] [Help]

APPS.OE_INVOICE_PUB dependencies on OE_VERIFY_PAYMENT_PUB

Line 7021: l_pay_method_id := OE_Verify_Payment_PUB.Get_Primary_Pay_Method

7017: IF l_debug_level > 0 THEN
7018: oe_debug_pub.add( 'GETTING PRIMAY PAYMENT METHOD' , 5 ) ;
7019: END IF;
7020:
7021: l_pay_method_id := OE_Verify_Payment_PUB.Get_Primary_Pay_Method
7022: ( p_header_rec => p_header_rec ) ;
7023: IF l_debug_level > 0 THEN
7024: oe_debug_pub.add( 'AFTER GETTING PRIMARY PAYMENT METHOD' , 5 ) ;
7025: END IF;

Line 7037: OE_Verify_Payment_PUB.Get_Pay_Method_Info

7033: oe_debug_pub.add( 'PAYMENT METHOD IS VALID' ) ;
7034: -- Call Get Pay Method Info to get the method name
7035: oe_debug_pub.add( 'GET PAYMENT METHOD INFORMATION ' , 5 ) ;
7036: END IF;
7037: OE_Verify_Payment_PUB.Get_Pay_Method_Info
7038: ( p_pay_method_id => l_pay_method_id
7039: , p_pay_method_name => l_pay_method_name
7040: , p_merchant_id => l_merchant_id
7041: ) ;

Line 7056: OE_Verify_Payment_PUB.Fetch_Current_Auth

7052: oe_debug_pub.add( 'CREDIT CARD APPROVAL CODE EXISTS' , 5 ) ;
7053: -- Call Fetch Current Auth to get the tangible id
7054: oe_debug_pub.add( 'FETCH CURRENT AUTHORIZATION CODE , IF ANY' , 5 ) ;
7055: END IF;
7056: OE_Verify_Payment_PUB.Fetch_Current_Auth
7057: ( p_header_rec => p_header_rec
7058: , p_trxn_id => l_trxn_id
7059: , p_tangible_id => l_tangible_id
7060: ) ;

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

7272: -- comment out the following code for R12 cc encryption
7273: /*
7274: IF l_credit_card_approval_code IS NOT NULL THEN
7275: p_x_interface_line_rec.approval_code := l_credit_card_approval_code;
7276: --bug3906851 getting the tangible_id from oe_verify_payment_pub.fetch_current_auth if it is null
7277: IF l_tangible_id IS NULL THEN
7278:
7279: OE_Verify_Payment_PUB.Fetch_Current_Auth
7280: ( p_header_rec => p_header_rec

Line 7279: OE_Verify_Payment_PUB.Fetch_Current_Auth

7275: p_x_interface_line_rec.approval_code := l_credit_card_approval_code;
7276: --bug3906851 getting the tangible_id from oe_verify_payment_pub.fetch_current_auth if it is null
7277: IF l_tangible_id IS NULL THEN
7278:
7279: OE_Verify_Payment_PUB.Fetch_Current_Auth
7280: ( p_header_rec => p_header_rec
7281: , p_trxn_id => l_trxn_id
7282: , p_tangible_id => l_tangible_id
7283: ) ;