DBA Data[Home] [Help]

APPS.IBY_BUILD_INSTRUCTIONS_PUB_PKG dependencies on IBY_PAYINSTR_PUB

Line 193: l_pmtInstrTab IBY_PAYINSTR_PUB.pmtInstrTabType;

189: l_int_bank_acct_id IBY_PAY_SERVICE_REQUESTS.internal_bank_account_id%TYPE; --Bug 16041562
190: l_module_name VARCHAR2(200) := G_PKG_NAME || '.build_payment_instructions';
191: l_not_provided CONSTANT VARCHAR2(100) := '';
192:
193: l_pmtInstrTab IBY_PAYINSTR_PUB.pmtInstrTabType;
194:
195: /*
196: * Implementing the callout is optional for the calling app.
197: * If the calling app does not implement the hook, then

Line 337: IBY_PAYINSTR_PUB.createPaymentInstructions(

333:
334: /*
335: * Invoke payment instruction creation logic.
336: */
337: IBY_PAYINSTR_PUB.createPaymentInstructions(
338: p_processing_type,
339: l_pmtdoc_id,
340: p_printer_name,
341: p_print_now_flag,

Line 947: l_instr_tab IBY_PAYINSTR_PUB.pmtInstrTabType;

943: l_return_message VARCHAR2 (3000);
944:
945: l_instr_status IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_status%TYPE;
946: l_instr_rec IBY_PAY_INSTRUCTIONS_ALL%ROWTYPE;
947: l_instr_tab IBY_PAYINSTR_PUB.pmtInstrTabType;
948:
949: l_doc_error_tab IBY_VALIDATIONSETS_PUB.docErrorTabType;
950: l_doc_token_tab IBY_VALIDATIONSETS_PUB.trxnErrTokenTabType;
951:

Line 1028: IBY_PAYINSTR_PUB.recreatePaymentInstruction(

1024: print_debuginfo(l_module_name,
1025: 'Invoking recreatePaymentInstruction()');
1026:
1027: END IF;
1028: IBY_PAYINSTR_PUB.recreatePaymentInstruction(
1029: l_instr_rec,
1030: l_doc_error_tab,
1031: l_doc_token_tab,
1032: l_return_status);

Line 1041: IBY_PAYINSTR_PUB.updatePaymentInstructions(l_instr_tab);

1037: * has occured for the payments of this instruction.
1038: * Therefore, the payment instruction status needs to be updated.
1039: */
1040: l_instr_tab(l_instr_tab.COUNT + 1) := l_instr_rec;
1041: IBY_PAYINSTR_PUB.updatePaymentInstructions(l_instr_tab);
1042:
1043: /*
1044: * If the payment instructions wwas again failed, the
1045: * IBY_TRANSACTION_ERRORS table must be populated with the

Line 1683: p_pmtInstrTab IN OUT NOCOPY IBY_PAYINSTR_PUB.pmtInstrTabType,

1679: | NOTES:
1680: |
1681: *---------------------------------------------------------------------*/
1682: PROCEDURE moveInstrToDeferredStatus(
1683: p_pmtInstrTab IN OUT NOCOPY IBY_PAYINSTR_PUB.pmtInstrTabType,
1684: p_instr_to_skip IN IBY_PAY_INSTRUCTIONS_ALL.
1685: payment_instruction_id%TYPE DEFAULT NULL
1686: )
1687: IS