DBA Data[Home] [Help]

APPS.CN_NOTIFY_INVOICES dependencies on CN_PROCESS_AUDITS_PKG

Line 46: cn_process_audits_pkg.insert_row(x_rowid, x_proc_audit_id, NULL, 'NOT', 'Notification run', NULL, NULL, NULL, NULL, NULL, SYSDATE, NULL, x_org_id);

42: fnd_file.put_line(fnd_file.Log, 'notify_invoices>>');
43:
44:
45: x_proc_audit_id := NULL; -- Will get a value in the call below
46: cn_process_audits_pkg.insert_row(x_rowid, x_proc_audit_id, NULL, 'NOT', 'Notification run', NULL, NULL, NULL, NULL, NULL, SYSDATE, NULL, x_org_id);
47:
48: cn_periods_api.set_dates(x_start_period, x_end_period, x_org_id,
49: x_start_date, x_end_date);
50:

Line 175: cn_process_audits_pkg.update_row(x_proc_audit_id, NULL, SYSDATE, 0,

171: END IF;
172:
173: x_trx_count := SQL%ROWCOUNT;
174:
175: cn_process_audits_pkg.update_row(x_proc_audit_id, NULL, SYSDATE, 0,
176: 'Finished notification run: Notified ' || x_trx_count || ' invoices.');
177:
178:
179:

Line 209: cn_process_audits_pkg.update_row(X_proc_audit_id, NULL, SYSDATE, SQLCODE,

205: cn_message_pkg.debug(SQLCODE||' '||SQLERRM);
206: fnd_file.put_line(fnd_file.Log, SQLCODE||' '||SQLERRM);
207:
208: cn_debug.print_msg('notify_invoices: in exception handler', 1);
209: cn_process_audits_pkg.update_row(X_proc_audit_id, NULL, SYSDATE, SQLCODE,
210: SQLERRM);
211: -- cn_message_pkg.end_batch (x_proc_audit_id);
212:
213: app_exception.raise_exception;