DBA Data[Home] [Help]

APPS.IBY_BUILD_INSTRUCTIONS_PUB_PKG dependencies on IBY_PAYINSTR_PUB

Line 168: l_pmtInstrTab IBY_PAYINSTR_PUB.pmtInstrTabType;

164: l_payreq_id IBY_PAY_SERVICE_REQUESTS.payment_service_request_id%TYPE;
165: l_module_name VARCHAR2(200) := G_PKG_NAME || '.build_payment_instructions';
166: l_not_provided CONSTANT VARCHAR2(100) := '';
167:
168: l_pmtInstrTab IBY_PAYINSTR_PUB.pmtInstrTabType;
169:
170: /*
171: * Implementing the callout is optional for the calling app.
172: * If the calling app does not implement the hook, then

Line 280: IBY_PAYINSTR_PUB.createPaymentInstructions(

276:
277: /*
278: * Invoke payment instruction creation logic.
279: */
280: IBY_PAYINSTR_PUB.createPaymentInstructions(
281: p_processing_type,
282: p_pmt_document_id,
283: p_printer_name,
284: p_print_now_flag,

Line 838: l_instr_tab IBY_PAYINSTR_PUB.pmtInstrTabType;

834: l_return_message VARCHAR2 (3000);
835:
836: l_instr_status IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_status%TYPE;
837: l_instr_rec IBY_PAY_INSTRUCTIONS_ALL%ROWTYPE;
838: l_instr_tab IBY_PAYINSTR_PUB.pmtInstrTabType;
839:
840: l_doc_error_tab IBY_VALIDATIONSETS_PUB.docErrorTabType;
841: l_doc_token_tab IBY_VALIDATIONSETS_PUB.trxnErrTokenTabType;
842:

Line 904: IBY_PAYINSTR_PUB.recreatePaymentInstruction(

900:
901: print_debuginfo(l_module_name,
902: 'Invoking recreatePaymentInstruction()');
903:
904: IBY_PAYINSTR_PUB.recreatePaymentInstruction(
905: l_instr_rec,
906: l_doc_error_tab,
907: l_doc_token_tab,
908: l_return_status);

Line 917: IBY_PAYINSTR_PUB.updatePaymentInstructions(l_instr_tab);

913: * has occured for the payments of this instruction.
914: * Therefore, the payment instruction status needs to be updated.
915: */
916: l_instr_tab(l_instr_tab.COUNT + 1) := l_instr_rec;
917: IBY_PAYINSTR_PUB.updatePaymentInstructions(l_instr_tab);
918:
919: /*
920: * If the payment instructions wwas again failed, the
921: * IBY_TRANSACTION_ERRORS table must be populated with the

Line 1335: p_pmtInstrTab IN OUT NOCOPY IBY_PAYINSTR_PUB.pmtInstrTabType,

1331: | NOTES:
1332: |
1333: *---------------------------------------------------------------------*/
1334: PROCEDURE moveInstrToDeferredStatus(
1335: p_pmtInstrTab IN OUT NOCOPY IBY_PAYINSTR_PUB.pmtInstrTabType,
1336: p_instr_to_skip IN IBY_PAY_INSTRUCTIONS_ALL.
1337: payment_instruction_id%TYPE DEFAULT NULL
1338: )
1339: IS