DBA Data[Home] [Help]

APPS.IBY_CHECKNUMBER_PUB dependencies on IBY_TRANSACTION_ERRORS

Line 44: -- Transaction types (for inserting into IBY_TRANSACTION_ERRORS table)

40: -- module (payment instruction creation flow).
41: --
42: DOC_STATUS_PAY_CREATED CONSTANT VARCHAR2(100) := 'PAYMENT_CREATED';
43:
44: -- Transaction types (for inserting into IBY_TRANSACTION_ERRORS table)
45: TRXN_TYPE_INSTR CONSTANT VARCHAR2(100) := 'INSTRUCTION';
46: TRXN_TYPE_PMT CONSTANT VARCHAR2(100) := 'PAYMENT';
47:
48: --

Line 1229: * IBY_TRANSACTION_ERRORS table.

1225: x_overflowDocsTab);
1226:
1227: /*
1228: * Insert any payment instruction errors into
1229: * IBY_TRANSACTION_ERRORS table.
1230: */
1231: IBY_VALIDATIONSETS_PUB.insert_transaction_errors('N', x_insErrorsTab,
1232: x_insTokenTab);
1233:

Line 1793: l_error_code IBY_TRANSACTION_ERRORS.error_code%TYPE;

1789:
1790: l_pmt_doc_name VARCHAR2(200) := '';
1791: l_pmt_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;
1792:
1793: l_error_code IBY_TRANSACTION_ERRORS.error_code%TYPE;
1794: l_instr_err_rec IBY_TRANSACTION_ERRORS%ROWTYPE;
1795: l_token_rec IBY_TRXN_ERROR_TOKENS%ROWTYPE;
1796:
1797: l_send_to_file_flag VARCHAR2(1);

Line 1794: l_instr_err_rec IBY_TRANSACTION_ERRORS%ROWTYPE;

1790: l_pmt_doc_name VARCHAR2(200) := '';
1791: l_pmt_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;
1792:
1793: l_error_code IBY_TRANSACTION_ERRORS.error_code%TYPE;
1794: l_instr_err_rec IBY_TRANSACTION_ERRORS%ROWTYPE;
1795: l_token_rec IBY_TRXN_ERROR_TOKENS%ROWTYPE;
1796:
1797: l_send_to_file_flag VARCHAR2(1);
1798: l_instr_status IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_status%TYPE;