DBA Data[Home] [Help]

APPS.CN_COLLECTION_OE_GEN dependencies on FND_FILE

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

35: cn_utils.set_org_id(p_org_id => l_org_id);
36: cn_utils.appendcr(code);
37: cn_utils.appendcr(code, '--******** INSERT CN_COMM_LINES_API *********-- ');
38: cn_utils.appindcr(code, 'cn_message_pkg.debug(''' || procedure_name || ': Inserting into CN_COMM_LINES_API.'');');
39: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''' || procedure_name || ': Inserting into CN_COMM_LINES_API.'');');
40:
41: cn_utils.appendcr(code);
42:
43: -- ++++++++++++++++++++++++++++++ -- +

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

225:
226: cn_utils.appendcr(code);
227:
228: cn_utils.appindcr(code, 'cn_message_pkg.debug(''' || procedure_name || ':Inserted '' || comm_lines_api_count || '' line records into CN_COMM_LINES_API.'');');
229: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''' || procedure_name || ':Inserted '' || comm_lines_api_count || '' line records into CN_COMM_LINES_API.'');');
230:
231: cn_utils.appendcr(code);
232: cn_utils.appendcr(code);
233:

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

232: cn_utils.appendcr(code);
233:
234: -- Update the collected_flag in CN_NOT_TRX
235: cn_utils.appindcr(code, 'cn_message_pkg.debug(''' || procedure_name || ': Updating collected_flag in CN_NOT_TRX .'');');
236: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''' || procedure_name || ': Updating collected_flag in CN_NOT_TRX .'');');
237:
238: cn_utils.appendcr(code);
239:
240: cn_utils.appindcr(code, 'UPDATE cn_not_trx cnt');

Line 248: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''' || procedure_name || ': Updated collected_flag in cn_not_trx.'');');

244: cn_utils.appindcr(code, ' AND cnt.batch_id = x_batch_id');
245: cn_utils.appindcr(code, ' AND cnt.org_id = '||l_org_id||' ;');
246: cn_utils.appendcr(code);
247: cn_utils.appindcr(code, 'cn_message_pkg.debug(''' || procedure_name || ': Updated collected_flag in cn_not_trx.'');');
248: cn_utils.appindcr(code, 'fnd_file.put_line(fnd_file.Log, ''' || procedure_name || ': Updated collected_flag in cn_not_trx.'');');
249:
250: cn_utils.appendcr(code);
251: cn_utils.unset_org_id();
252: --dbms_output.put_line('--- Ashley Pink Test End oe gen');

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

253: EXCEPTION
254: WHEN NO_DATA_FOUND
255: THEN
256: cn_debug.print_msg('insert_lines: in exception handler for NO_DATA_FOUND',1);
257: fnd_file.put_line(fnd_file.Log, 'insert_lines: in exception handler for NO_DATA_FOUND');
258: RETURN;
259: END insert_comm_lines_api;
260:
261: END cn_collection_oe_gen;