DBA Data[Home] [Help]

APPS.AR_PMT_PROCESS_WRAPPER dependencies on IBY_PAYMENT_ADAPTER_PUB

Line 24: | Authorize API IBY_Payment_Adapter_pub.OraPmtReq.

20: site_use_id ar_cash_receipts.customer_site_use_id%TYPE);
21:
22: /*--------------------------------------------------------------------------
23: | This record contains all the parameters that are required to by iPayments
24: | Authorize API IBY_Payment_Adapter_pub.OraPmtReq.
25: |-------------------------------------------------------------------------*/
26: TYPE authorize_input_rec IS RECORD (
27: customer_bank_branch_id ap_bank_accounts.bank_branch_id%TYPE,
28: merchant_ref ar_receipt_methods.merchant_ref%TYPE,

Line 43: | Authorize API IBY_Payment_Adapter_pub.OraPmtReq.

39: );
40:
41: /*--------------------------------------------------------------------------
42: | This record contains the output record returned by iPayments
43: | Authorize API IBY_Payment_Adapter_pub.OraPmtReq.
44: |-------------------------------------------------------------------------*/
45: TYPE authorize_output_rec IS RECORD (
46: x_reqresp_rec IBY_Payment_Adapter_pub.ReqResp_rec_type);
47:

Line 46: x_reqresp_rec IBY_Payment_Adapter_pub.ReqResp_rec_type);

42: | This record contains the output record returned by iPayments
43: | Authorize API IBY_Payment_Adapter_pub.OraPmtReq.
44: |-------------------------------------------------------------------------*/
45: TYPE authorize_output_rec IS RECORD (
46: x_reqresp_rec IBY_Payment_Adapter_pub.ReqResp_rec_type);
47:
48: /*--------------------------------------------------------------------------
49: | This record contains all the parameters that are required to by iPayments
50: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.

Line 50: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.

46: x_reqresp_rec IBY_Payment_Adapter_pub.ReqResp_rec_type);
47:
48: /*--------------------------------------------------------------------------
49: | This record contains all the parameters that are required to by iPayments
50: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.
51: |-------------------------------------------------------------------------*/
52: TYPE capture_input_rec IS RECORD (
53: payment_server_order_num ar_cash_receipts.payment_server_order_num%TYPE,
54: receipt_amount ar_cash_receipts.amount%TYPE,

Line 61: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.

57: );
58:
59: /*--------------------------------------------------------------------------
60: | This record contains the output record returned by iPayments
61: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.
62: |-------------------------------------------------------------------------*/
63: TYPE capture_output_rec IS RECORD (
64: x_capresp_rec IBY_Payment_Adapter_pub.CaptureResp_rec_type);
65:

Line 64: x_capresp_rec IBY_Payment_Adapter_pub.CaptureResp_rec_type);

60: | This record contains the output record returned by iPayments
61: | Capture API IBY_Payment_Adapter_pub.OraPmtCapture.
62: |-------------------------------------------------------------------------*/
63: TYPE capture_output_rec IS RECORD (
64: x_capresp_rec IBY_Payment_Adapter_pub.CaptureResp_rec_type);
65:
66: /*========================================================================
67: | PUBLIC PROCEDURE Authorize_Payment
68: |

Line 71: | IBY_Payment_Adapter_pub.OraPmtReq.

67: | PUBLIC PROCEDURE Authorize_Payment
68: |
69: | DESCRIPTION
70: | This procedure makes a call to iPayment's API for Authorization
71: | IBY_Payment_Adapter_pub.OraPmtReq.
72: |
73: |
74: | PSEUDO CODE/LOGIC
75: |

Line 87: | returned by iPayment API IBY_Payment_Adapter_pub.ReqResp_rec_type

83: | to send to iPayment for Authorizations.
84: |
85: | x_authorize_output_rec OUT
86: | This is the output record and comprises of the output record
87: | returned by iPayment API IBY_Payment_Adapter_pub.ReqResp_rec_type
88: |
89: | KNOWN ISSUES
90: |
91: |

Line 118: | IBY_Payment_Adapter_pub.OraPmtCapture

114: | PUBLIC PROCEDURE Capture_Payment
115: |
116: | DESCRIPTION
117: | This procedure makes a call to iPayment's API for Capture
118: | IBY_Payment_Adapter_pub.OraPmtCapture
119: |
120: |
121: | PSEUDO CODE/LOGIC
122: |

Line 134: | returned by iPayment API IBY_Payment_Adapter_pub.CaptureResp_rec_type

130: | to send to iPayment for Capture.
131: |
132: | x_capture_output_rec OUT
133: | This is the output record and comprises of the output record
134: | returned by iPayment API IBY_Payment_Adapter_pub.CaptureResp_rec_type
135: |
136: | KNOWN ISSUES
137: |
138: |