DBA Data[Home] [Help]

APPS.IBY_DISBURSE_UI_API_PUB_PKG dependencies on IBY_PAY_INSTRUCTIONS_ALL

Line 1300: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;

1296: l_msg_count NUMBER;
1297: l_msg_data VARCHAR2(2000);
1298:
1299:
1300: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;
1301: l_valid_pmts_count NUMBER;
1302:
1303: /*
1304: * Implementing the callout is optional for the calling app.

Line 1375: IBY_PAY_INSTRUCTIONS_ALL instr,

1371: instr.payment_instruction_id
1372: INTO
1373: l_instr_id
1374: FROM
1375: IBY_PAY_INSTRUCTIONS_ALL instr,
1376: IBY_PAYMENTS_ALL pmt
1377: WHERE
1378: instr.payment_instruction_id = pmt.payment_instruction_id AND
1379: pmt.payment_id = p_pmt_id;

Line 1419: IBY_PAY_INSTRUCTIONS_ALL

1415: * * payment instruction.
1416: * */
1417:
1418: UPDATE
1419: IBY_PAY_INSTRUCTIONS_ALL
1420: SET
1421: payment_instruction_status = INS_STATUS_TERMINATED
1422: WHERE
1423: payment_instruction_id = l_instr_id;

Line 1797: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;

1793:
1794: l_api_version CONSTANT NUMBER := 1.0;
1795: l_api_name CONSTANT VARCHAR2(100) := 'void_payment';
1796:
1797: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;
1798: l_valid_pmts_count
1799: NUMBER;
1800:
1801: BEGIN

Line 1908: IBY_PAY_INSTRUCTIONS_ALL instr,

1904: instr.payment_instruction_id
1905: INTO
1906: l_instr_id
1907: FROM
1908: IBY_PAY_INSTRUCTIONS_ALL instr,
1909: IBY_PAYMENTS_ALL pmt
1910: WHERE
1911: instr.payment_instruction_id = pmt.payment_instruction_id AND
1912: pmt.payment_id = p_pmt_id

Line 1953: IBY_PAY_INSTRUCTIONS_ALL

1949: * because no valid payments now exist for this
1950: * payment instruction.
1951: */
1952: UPDATE
1953: IBY_PAY_INSTRUCTIONS_ALL
1954: SET
1955: payment_instruction_status = INS_STATUS_TERMINATED
1956: WHERE
1957: payment_instruction_id = l_instr_id

Line 2136: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;

2132:
2133: l_test VARCHAR2(2000);
2134: l_org NUMBER(15);
2135:
2136: l_instr_id IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_id%TYPE;
2137:
2138: l_valid_pmts_count NUMBER;
2139: l_curr_pmt_status VARCHAR2(200);
2140:

Line 2383: IBY_PAY_INSTRUCTIONS_ALL instr,

2379: instr.payment_instruction_id
2380: INTO
2381: l_instr_id
2382: FROM
2383: IBY_PAY_INSTRUCTIONS_ALL instr,
2384: IBY_PAYMENTS_ALL pmt
2385: WHERE
2386: instr.payment_instruction_id = pmt.payment_instruction_id AND
2387: pmt.payment_id = p_pmt_id

Line 2427: IBY_PAY_INSTRUCTIONS_ALL

2423: * because no valid payments now exist for this
2424: * payment instruction.
2425: */
2426: UPDATE
2427: IBY_PAY_INSTRUCTIONS_ALL
2428: SET
2429: payment_instruction_status = INS_STATUS_TERMINATED
2430: WHERE
2431: payment_instruction_id = l_instr_id

Line 3057: iby_pay_instructions_all

3053: * so that user cannot take any further action on the
3054: * payment instruction.
3055: */
3056: UPDATE
3057: iby_pay_instructions_all
3058: SET
3059: payment_instruction_status = INS_STATUS_TERMINATED
3060: WHERE
3061: payment_instruction_id = p_instr_id

Line 3680: IBY_PAY_INSTRUCTIONS_ALL ins

3676: FROM
3677: FND_APPLICATION fnd,
3678: IBY_PAYMENTS_ALL pmt,
3679: IBY_PAY_SERVICE_REQUESTS req,
3680: IBY_PAY_INSTRUCTIONS_ALL ins
3681: WHERE
3682: pmt.payment_instruction_id = ins.payment_instruction_id AND
3683: req.payment_service_request_id = pmt.payment_service_request_id AND
3684: fnd.application_id = req.calling_app_id AND

Line 3700: IBY_PAY_INSTRUCTIONS_ALL ins

3696: FROM
3697: FND_APPLICATION fnd,
3698: IBY_PAYMENTS_ALL pmt,
3699: IBY_PAY_SERVICE_REQUESTS req,
3700: IBY_PAY_INSTRUCTIONS_ALL ins
3701: WHERE
3702: pmt.payment_instruction_id = ins.payment_instruction_id AND
3703: req.payment_service_request_id = pmt.payment_service_request_id AND
3704: fnd.application_id = req.calling_app_id AND

Line 3814: iby_pay_instructions_all

3810: * Update payment instruction, payment and document statuses
3811: * to 'terminated'.
3812: */
3813: UPDATE
3814: iby_pay_instructions_all
3815: SET
3816: payment_instruction_status = INS_STATUS_TERMINATED
3817: WHERE
3818: payment_instruction_id = p_instr_id

Line 5386: UPDATE iby_pay_instructions_all ins

5382: * instruction
5383: *
5384: */
5385:
5386: UPDATE iby_pay_instructions_all ins
5387: SET ins.printer_name = p_printer_name
5388: WHERE ins.payment_instruction_id = p_instr_id;
5389:
5390:

Line 5773: UPDATE iby_pay_instructions_all ins

5769: * instruction
5770: *
5771: */
5772:
5773: UPDATE iby_pay_instructions_all ins
5774: SET ins.printer_name = p_printer_name
5775: WHERE ins.payment_instruction_id = p_instr_id;
5776:
5777:

Line 5974: IBY_PAY_INSTRUCTIONS_ALL

5970: || p_instr_id
5971: || ' to formatted - ready for printing ..'
5972: );
5973: UPDATE
5974: IBY_PAY_INSTRUCTIONS_ALL
5975: SET
5976: payment_instruction_status = INS_STATUS_FORMAT_TO_PRINT
5977: WHERE
5978: payment_instruction_id = p_instr_id

Line 6560: IBY_PAY_INSTRUCTIONS_ALL

6556: *
6557: * Change the status of the payment instruction to PRINTED.
6558: */
6559: UPDATE
6560: IBY_PAY_INSTRUCTIONS_ALL
6561: SET
6562: payment_instruction_status = INS_STATUS_PRINTED
6563: WHERE
6564: payment_instruction_id = p_instr_id

Line 7159: IBY_PAY_INSTRUCTIONS_ALL

7155: *
7156: * Change the status of the payment instruction to PRINTED.
7157: */
7158: UPDATE
7159: IBY_PAY_INSTRUCTIONS_ALL
7160: SET
7161: payment_instruction_status = INS_STATUS_PRINTED
7162: WHERE
7163: payment_instruction_id = p_instr_id

Line 7395: IBY_PAY_INSTRUCTIONS_ALL

7391: payment_document_id
7392: INTO
7393: l_pmt_doc_id
7394: FROM
7395: IBY_PAY_INSTRUCTIONS_ALL
7396: WHERE
7397: payment_instruction_id = p_instr_id
7398: ;
7399:

Line 7555: IBY_PAY_INSTRUCTIONS_ALL

7551: *
7552: * Change the status of the payment instruction to PRINTED.
7553: */
7554: UPDATE
7555: IBY_PAY_INSTRUCTIONS_ALL
7556: SET
7557: payment_instruction_status = INS_STATUS_PRINTED
7558: WHERE
7559: payment_instruction_id = p_instr_id

Line 7779: IBY_PAY_INSTRUCTIONS_ALL ins

7775: FROM
7776: FND_APPLICATION fnd,
7777: IBY_PAYMENTS_ALL pmt,
7778: IBY_PAY_SERVICE_REQUESTS req,
7779: IBY_PAY_INSTRUCTIONS_ALL ins
7780: WHERE
7781: pmt.payment_instruction_id = ins.payment_instruction_id AND
7782: req.payment_service_request_id = pmt.payment_service_request_id AND
7783: fnd.application_id = req.calling_app_id AND

Line 7799: IBY_PAY_INSTRUCTIONS_ALL ins

7795: FROM
7796: FND_APPLICATION fnd,
7797: IBY_PAYMENTS_ALL pmt,
7798: IBY_PAY_SERVICE_REQUESTS req,
7799: IBY_PAY_INSTRUCTIONS_ALL ins
7800: WHERE
7801: pmt.payment_instruction_id = ins.payment_instruction_id AND
7802: req.payment_service_request_id = pmt.payment_service_request_id AND
7803: fnd.application_id = req.calling_app_id AND

Line 7849: IBY_PAY_INSTRUCTIONS_ALL inst

7845: l_pmts_complete_code,
7846: l_process_type
7847: FROM
7848: IBY_PAYMENT_PROFILES prof,
7849: IBY_PAY_INSTRUCTIONS_ALL inst
7850: WHERE
7851: prof.payment_profile_id = inst.payment_profile_id AND
7852: inst.payment_instruction_id = p_instr_id;
7853:

Line 8029: IBY_PAY_INSTRUCTIONS_ALL

8025: * Mark the given payment instruction as completed.
8026: */
8027:
8028: UPDATE
8029: IBY_PAY_INSTRUCTIONS_ALL
8030: SET
8031: payments_complete_code = PMT_COMPLETE_YES
8032: WHERE
8033: payment_instruction_id = p_instr_id

Line 8487: IBY_PAY_INSTRUCTIONS_ALL inst,

8483: l_remit_format_code
8484: FROM
8485: IBY_PAYMENT_PROFILES prof,
8486: IBY_SYS_PMT_PROFILES_B sys_prof,
8487: IBY_PAY_INSTRUCTIONS_ALL inst,
8488: IBY_REMIT_ADVICE_SETUP remit
8489: WHERE
8490: prof.payment_profile_id = inst.payment_profile_id AND
8491: sys_prof.system_profile_code = prof.system_profile_code AND

Line 9168: l_instr_status IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_status%TYPE;

9164: x_return_status IN OUT NOCOPY VARCHAR2,
9165: x_return_message IN OUT NOCOPY VARCHAR2) IS
9166:
9167: l_module_name CONSTANT VARCHAR2(200) := G_PKG_NAME|| '.perform_check_print';
9168: l_instr_status IBY_PAY_INSTRUCTIONS_ALL.payment_instruction_status%TYPE;
9169:
9170: l_error_code VARCHAR2(3000);
9171:
9172: l_msg_count NUMBER;

Line 9191: IBY_PAY_INSTRUCTIONS_ALL

9187: payment_instruction_status
9188: INTO
9189: l_instr_status
9190: FROM
9191: IBY_PAY_INSTRUCTIONS_ALL
9192: WHERE
9193: payment_instruction_id = p_instruction_id
9194: ;
9195:

Line 9268: IBY_PAY_INSTRUCTIONS_ALL

9264: * with the provided printer name. The Post-PICP modules
9265: * will use this printer for printing the checks.
9266: */
9267: UPDATE
9268: IBY_PAY_INSTRUCTIONS_ALL
9269: SET
9270: printer_name = p_printer_name
9271: WHERE
9272: payment_instruction_id = p_instruction_id

Line 9777: IBY_PAY_INSTRUCTIONS_ALL inst

9773:
9774: ELSIF (p_object_type = 'PAYMENT_INSTRUCTION') THEN
9775:
9776: UPDATE
9777: IBY_PAY_INSTRUCTIONS_ALL inst
9778: SET
9779: inst.request_id = l_conc_request_id
9780: WHERE
9781: inst.payment_instruction_id = p_object_id

Line 9954: IBY_PAY_INSTRUCTIONS_ALL inst

9950:
9951: ELSIF (p_object_type = 'PAYMENT_INSTRUCTION') THEN
9952:
9953: UPDATE
9954: IBY_PAY_INSTRUCTIONS_ALL inst
9955: SET
9956: inst.request_id = NULL
9957: WHERE
9958: inst.payment_instruction_id = p_object_id

Line 10588: IBY_PAY_INSTRUCTIONS_ALL inst

10584:
10585: IF (l_flag = TRUE) THEN
10586:
10587: UPDATE
10588: IBY_PAY_INSTRUCTIONS_ALL inst
10589: SET
10590: inst.payment_instruction_status = INS_STATUS_FORMATTED_ELEC
10591: WHERE
10592: inst.payment_instruction_id = p_instr_id

Line 10606: IBY_PAY_INSTRUCTIONS_ALL inst

10602:
10603: ELSE
10604:
10605: UPDATE
10606: IBY_PAY_INSTRUCTIONS_ALL inst
10607: SET
10608: inst.payment_instruction_status = INS_STATUS_TRANSMITTED
10609: WHERE
10610: inst.payment_instruction_id = p_instr_id

Line 10718: IBY_PAY_INSTRUCTIONS_ALL instr,

10714: (
10715: SELECT
10716: instr.payment_instruction_id
10717: FROM
10718: IBY_PAY_INSTRUCTIONS_ALL instr,
10719: IBY_PAYMENT_PROFILES prof
10720: WHERE
10721: instr.payment_instruction_id = p_instr_id
10722: AND

Line 10845: IBY_PAY_INSTRUCTIONS_ALL inst

10841: (
10842: SELECT
10843: inst.payment_instruction_id
10844: FROM
10845: IBY_PAY_INSTRUCTIONS_ALL inst
10846: WHERE
10847: inst.payment_instruction_id = p_object_id
10848: AND
10849: inst.request_id IS NOT NULL