DBA Data[Home] [Help]

APPS.CN_COLLECTION_CUSTOM_GEN dependencies on FND_FILE

Line 127: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Inserting new transactions into CN_NOT_TRX.'');');

123: cn_utils.set_org_id(p_org_id => l_org_id);
124: cn_utils.appendcr(code);
125: cn_utils.appendcr(code, '--******** NOTIFICATION PROCESSING *********-- ');
126: cn_utils.appindcr(code, 'cn_message_pkg.debug(''Inserting new transactions into CN_NOT_TRX.'');');
127: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Inserting new transactions into CN_NOT_TRX.'');');
128: cn_utils.appendcr(code);
129: --+
130: -- Most local variables for the collect procedure are part of a static set, which is generated
131: -- for all pacakges (inclding OC and AR) at the start of the procedure by the cn_collection_gen

Line 295: fnd_file.put_line(fnd_file.Log,'*** Finished notification run ');

291: cn_utils.appindcr(code, 'COMMIT;');
292: cn_utils.unset_org_id();
293:
294: cn_message_pkg.debug('*** Finished notification run ');
295: fnd_file.put_line(fnd_file.Log,'*** Finished notification run ');
296:
297: cn_utils.set_org_id(p_org_id => l_org_id);
298: cn_utils.appendcr(code);
299:

Line 490: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''Inserting into CN_COMM_LINES_API.'');');

486: cn_utils.set_org_id(p_org_id => X_org_id);
487: cn_utils.appendcr(code);
488: cn_utils.appendcr(code, '--******** INSERT CN_COMM_LINES_API *********-- ');
489: cn_utils.appindcr(code, 'cn_message_pkg.debug(''Inserting into CN_COMM_LINES_API.'');');
490: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''Inserting into CN_COMM_LINES_API.'');');
491: cn_utils.appendcr(code);
492: --+
493: -- Generate the INSERT INTO API .. SELECT portion of
494: -- the statement

Line 545: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Inserted '' || comm_lines_api_count || '' line records into CN_COMM_LINES_API.'');');

541: cn_utils.appindcr(code, 'comm_lines_api_count := SQL%ROWCOUNT;');
542: cn_utils.appendcr(code);
543:
544: cn_utils.appindcr(code, 'cn_message_pkg.debug(''Inserted '' || comm_lines_api_count || '' line records into CN_COMM_LINES_API.'');');
545: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Inserted '' || comm_lines_api_count || '' line records into CN_COMM_LINES_API.'');');
546:
547: cn_utils.appendcr(code);
548: cn_utils.appendcr(code);
549:

Line 552: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Updating collected_flag in CN_NOT_TRX .'');');

548: cn_utils.appendcr(code);
549:
550: -- Update the collected_flag in CN_NOT_TRX
551: cn_utils.appindcr(code, 'cn_message_pkg.debug(''Updating collected_flag in CN_NOT_TRX .'');');
552: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log,''Updating collected_flag in CN_NOT_TRX .'');');
553:
554: cn_utils.appendcr(code);
555:
556: IF CN_COLLECTION_GEN.isParallelEnabled THEN

Line 580: fnd_file.put_line(fnd_file.Log, 'insert_lines: in exception handler for NO_DATA_FOUND');

576:
577: EXCEPTION
578: WHEN NO_DATA_FOUND THEN
579: cn_debug.print_msg('insert_lines: in exception handler for NO_DATA_FOUND',1);
580: fnd_file.put_line(fnd_file.Log, 'insert_lines: in exception handler for NO_DATA_FOUND');
581:
582: RETURN;
583: END insert_comm_lines_api;
584:

Line 751: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''For all INDIRECT mappings updated '' || SQL%ROWCOUNT || '' rows in cn_comm_lines_api.'');');

747: -- Generate code to update the comm_lines_api_update_count variable
748: --+
749: cn_utils.appendcr(code);
750: cn_utils.appindcr(code, 'cn_message_pkg.debug(''For all INDIRECT mappings updated '' || SQL%ROWCOUNT || '' rows in cn_comm_lines_api.'');');
751: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''For all INDIRECT mappings updated '' || SQL%ROWCOUNT || '' rows in cn_comm_lines_api.'');');
752: cn_utils.appendcr(code);
753: cn_utils.unset_org_id();
754:
755: EXCEPTION

Line 758: fnd_file.put_line(fnd_file.Log, 'update_lines: in exception handler for NO_DATA_FOUND');

754:
755: EXCEPTION
756: WHEN NO_DATA_FOUND THEN
757: cn_debug.print_msg('update_lines: in exception handler for NO_DATA_FOUND', 1);
758: fnd_file.put_line(fnd_file.Log, 'update_lines: in exception handler for NO_DATA_FOUND');
759: RETURN;
760: END update_comm_lines_api;
761:
762: --

Line 807: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''Filtering unwanted transactions from cn_comm_lines_api.'');');

803: cn_utils.set_org_id(x_org_id);
804: cn_utils.appendcr(code);
805: cn_utils.appendcr(code, '--******** FILTER PROCESSING *********-- ');
806: cn_utils.appindcr(code, 'cn_message_pkg.debug(''Filtering unwanted transactions from cn_comm_lines_api.'');');
807: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''Filtering unwanted transactions from cn_comm_lines_api.'');');
808: cn_utils.appendcr(code);
809: --+
810: -- Generate deletion code
811: --+