DBA Data[Home] [Help]

APPS.CN_SCA_CREDITS_BATCH_PVT dependencies on CN_MESSAGE_PKG

Line 27: cn_message_pkg.debug(SUBSTR(msg,1,254));

23: PROCEDURE debugmsg(msg VARCHAR2) IS
24: BEGIN
25:
26: IF g_cn_debug = 'Y' THEN
27: cn_message_pkg.debug(SUBSTR(msg,1,254));
28: END IF;
29: END debugmsg;
30: --
31: --

Line 120: cn_message_pkg.begin_batch(

116: BEGIN
117: --
118: l_request_id := fnd_global.conc_request_id;
119:
120: cn_message_pkg.begin_batch(
121: x_process_type => 'Batch Mode SCA',
122: x_parent_proc_audit_id => p_parent_proc_audit_id,
123: x_process_audit_id => l_process_audit_id,
124: x_request_id => l_request_id,

Line 534: cn_message_pkg.set_name('CN','ALL_PROCESS_DONE_OK');

530: --+
531:
532: debugmsg('Completed for the physical batch : ' || p_physical_batch_id);
533:
534: cn_message_pkg.set_name('CN','ALL_PROCESS_DONE_OK');
535: cn_message_pkg.end_batch(l_process_audit_id);
536:
537: retcode := 0;
538: errbuf := 'Program completed successfully';

Line 535: cn_message_pkg.end_batch(l_process_audit_id);

531:
532: debugmsg('Completed for the physical batch : ' || p_physical_batch_id);
533:
534: cn_message_pkg.set_name('CN','ALL_PROCESS_DONE_OK');
535: cn_message_pkg.end_batch(l_process_audit_id);
536:
537: retcode := 0;
538: errbuf := 'Program completed successfully';
539: debugmsg('Batch Mode SCA End');

Line 547: cn_message_pkg.end_batch(l_process_audit_id);

543: ROLLBACK;
544: retcode := 2;
545: errbuf := 'Failed';
546: debugmsg('Batch Mode SCA End with errors');
547: cn_message_pkg.end_batch(l_process_audit_id);
548: END;
549: --
550: END;