DBA Data[Home] [Help]

APPS.AP_WEB_UTIL_PKG dependencies on AP_WEB_CREDIT_CARD_WF

Line 178: -- ap_web_credit_card_wf.sendPaymentNotification procedure

174: LogStatement('NotifyEmployeeOnPayment', 'Bank Information ' || l_account || ' ' || l_bankName );
175:
176: LogStatement('NotifyEmployeeOnPayment', 'Setting Payment Method ');
177: -- The value for l_paymentMethod is set to a constant recognized by the
178: -- ap_web_credit_card_wf.sendPaymentNotification procedure
179: if ((l_processing_type = 'ELECTRONIC')) then -- AND (l_ext_bank_account_id IS NOT NULL)) then
180: l_paymentMethod := 'DIRECT_DEPOSIT';
181: else
182: l_paymentMethod := 'CHECK';

Line 285: ap_web_credit_card_wf.sendPaymentNotification(

281:
282: LogStatement('NotifyEmployeeOnPayment', 'Notify Employee on Payment to credit card company on behalf of the employee ');
283: LogStatement('NotifyEmployeeOnPayment', 'Calling SSE workflow API...(paid_on_behalf_employee_id not null)');
284:
285: ap_web_credit_card_wf.sendPaymentNotification(
286: p_checkNumber => l_checkNumber,
287: p_employeeId => l_paid_on_behalf_employee_id,
288: p_paymentCurrency => l_paymentCurrency,
289: p_invoiceNumber => l_invoiceNumber,

Line 291: p_paymentTo => ap_web_credit_card_wf.c_paymentToCardIssuer,

287: p_employeeId => l_paid_on_behalf_employee_id,
288: p_paymentCurrency => l_paymentCurrency,
289: p_invoiceNumber => l_invoiceNumber,
290: p_paidAmount => l_paidAmount,
291: p_paymentTo => ap_web_credit_card_wf.c_paymentToCardIssuer,
292: p_paymentMethod => NULL,
293: p_account => NULL,
294: p_bankName => NULL,
295: p_cardIssuer => l_cardIssuer,

Line 304: ap_web_credit_card_wf.sendPaymentNotification(

300: LogStatement('NotifyEmployeeOnPayment', 'Notify Employee on all expense payments made to the employee ');
301:
302: if(l_reversalFlag = 'Y') then
303: LogStatement('NotifyEmployeeOnPayment', 'Notification for Reversal Flag = Y');
304: ap_web_credit_card_wf.sendPaymentNotification(
305: p_checkNumber => l_checkNumber,
306: p_employeeId => l_employeeId,
307: p_paymentCurrency => l_paymentCurrency,
308: p_invoiceNumber => l_invoiceNumber,

Line 310: p_paymentTo => ap_web_credit_card_wf.c_voidPayment,

306: p_employeeId => l_employeeId,
307: p_paymentCurrency => l_paymentCurrency,
308: p_invoiceNumber => l_invoiceNumber,
309: p_paidAmount => l_paidAmount,
310: p_paymentTo => ap_web_credit_card_wf.c_voidPayment,
311: p_paymentMethod => l_paymentMethod,
312: p_account => l_account,
313: p_bankName => l_bankName,
314: p_cardIssuer => NULL,

Line 318: ap_web_credit_card_wf.sendPaymentNotification(

314: p_cardIssuer => NULL,
315: p_paymentDate => fnd_date.date_to_canonical(l_paymentDate) );
316: else
317: LogStatement('NotifyEmployeeOnPayment', 'Notification for Reversal Flag <> Y');
318: ap_web_credit_card_wf.sendPaymentNotification(
319: p_checkNumber => l_checkNumber,
320: p_employeeId => l_employeeId,
321: p_paymentCurrency => l_paymentCurrency,
322: p_invoiceNumber => l_invoiceNumber,

Line 324: p_paymentTo => ap_web_credit_card_wf.c_paymentToEmployee,

320: p_employeeId => l_employeeId,
321: p_paymentCurrency => l_paymentCurrency,
322: p_invoiceNumber => l_invoiceNumber,
323: p_paidAmount => l_paidAmount,
324: p_paymentTo => ap_web_credit_card_wf.c_paymentToEmployee,
325: p_paymentMethod => l_paymentMethod,
326: p_account => l_account,
327: p_bankName => l_bankName,
328: p_cardIssuer => NULL,