DBA Data[Home] [Help]

APPS.AP_WEB_RECEIPT_MANAGEMENT_UTIL dependencies on AP_WEB_HOLDS_WF

Line 320: AP_WEB_HOLDS_WF.ReadyForPayment(p_report_header_id);

316: ELSIF (p_event = C_EVENT_REQUEST_INFO) THEN
317: -- currently no additional processing for this event
318: null;
319: ELSIF (p_event = C_EVENT_RELEASE_HOLD) THEN
320: AP_WEB_HOLDS_WF.ReadyForPayment(p_report_header_id);
321:
322: IF header_rec.source = 'Both Pay' THEN
323: /* For both pay reports the status is reset on the header only if the original report contains only
324: * credit card transaction lines */

Line 326: AP_WEB_HOLDS_WF.ReadyForPayment(orig_cc_rec.report_header_id);

322: IF header_rec.source = 'Both Pay' THEN
323: /* For both pay reports the status is reset on the header only if the original report contains only
324: * credit card transaction lines */
325: FOR orig_cc_rec IN orig_cc_cur(header_rec.BOTHPAY_PARENT_ID) LOOP
326: AP_WEB_HOLDS_WF.ReadyForPayment(orig_cc_rec.report_header_id);
327: AP_WEB_HOLDS_WF.RaiseReleasedEvent(orig_cc_rec.report_header_id);
328: END LOOP;
329: ELSE
330: AP_WEB_HOLDS_WF.RaiseReleasedEvent(p_report_header_id);

Line 327: AP_WEB_HOLDS_WF.RaiseReleasedEvent(orig_cc_rec.report_header_id);

323: /* For both pay reports the status is reset on the header only if the original report contains only
324: * credit card transaction lines */
325: FOR orig_cc_rec IN orig_cc_cur(header_rec.BOTHPAY_PARENT_ID) LOOP
326: AP_WEB_HOLDS_WF.ReadyForPayment(orig_cc_rec.report_header_id);
327: AP_WEB_HOLDS_WF.RaiseReleasedEvent(orig_cc_rec.report_header_id);
328: END LOOP;
329: ELSE
330: AP_WEB_HOLDS_WF.RaiseReleasedEvent(p_report_header_id);
331:

Line 330: AP_WEB_HOLDS_WF.RaiseReleasedEvent(p_report_header_id);

326: AP_WEB_HOLDS_WF.ReadyForPayment(orig_cc_rec.report_header_id);
327: AP_WEB_HOLDS_WF.RaiseReleasedEvent(orig_cc_rec.report_header_id);
328: END LOOP;
329: ELSE
330: AP_WEB_HOLDS_WF.RaiseReleasedEvent(p_report_header_id);
331:
332: /* For reports from which cc transactions were split into separate .1 report, release hold also releases
333: * the hold on the split report */
334: FOR split_cc_rec IN split_cc_cur LOOP

Line 335: AP_WEB_HOLDS_WF.ReadyForPayment(split_cc_rec.report_header_id);

331:
332: /* For reports from which cc transactions were split into separate .1 report, release hold also releases
333: * the hold on the split report */
334: FOR split_cc_rec IN split_cc_cur LOOP
335: AP_WEB_HOLDS_WF.ReadyForPayment(split_cc_rec.report_header_id);
336: END LOOP;
337: END IF;
338: ELSIF (p_event = C_EVENT_SHORTPAY) THEN
339: IF l_new_status = C_STATUS_NOT_REQUIRED THEN