DBA Data[Home] [Help]

APPS.AR_TRX_SUMMARY_PKG dependencies on FND_FILE

Line 38: fnd_file.put_line(fnd_file.log,'AR_TRX_SUMMARY_PKG.refresh_all(+)');

34: l_string VARCHAR2(4000);
35: l_po_value VARCHAR2(10);
36: l_at_risk_exists VARCHAR2(1);
37: BEGIN
38: fnd_file.put_line(fnd_file.log,'AR_TRX_SUMMARY_PKG.refresh_all(+)');
39: l_po_value := fnd_profile.value('AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH');
40:
41: IF nvl(l_po_value,'N') IN ('Y','A') THEN
42:

Line 1126: fnd_file.put_line(fnd_file.log,'The profile AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH = N');

1122: 'N','APPL',222);
1123: END IF;
1124:
1125: ELSE
1126: fnd_file.put_line(fnd_file.log,'The profile AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH = N');
1127:
1128: END IF;
1129:
1130: /* over commit to insure that deleted rows are recorded */

Line 1133: fnd_file.put_line(fnd_file.log,'AR_TRX_SUMMARY_PKG.refresh_all(-)');

1129:
1130: /* over commit to insure that deleted rows are recorded */
1131: COMMIT;
1132:
1133: fnd_file.put_line(fnd_file.log,'AR_TRX_SUMMARY_PKG.refresh_all(-)');
1134: EXCEPTION
1135: WHEN others THEN
1136: raise;
1137: END refresh_all;

Line 1205: fnd_file.put_line(FND_FILE.LOG, ' worker ' || p_worker_number ||

1201: END IF;
1202:
1203:
1204: /* Display number of customers in conc log */
1205: fnd_file.put_line(FND_FILE.LOG, ' worker ' || p_worker_number ||
1206: ' of ' || p_max_workers || ' number of customers: ' ||
1207: l_rows);
1208:
1209: arp_standard.debug(' count of distinct customers = ' || l_rows);

Line 2363: fnd_file.put_line(fnd_file.log,

2359: l_po_value := fnd_profile.value('AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH');
2360:
2361: IF nvl(l_po_value,'N') = 'N'
2362: THEN
2363: fnd_file.put_line(fnd_file.log,
2364: 'The profile AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH = N');
2365: IF PG_DEBUG in ('Y','C')
2366: THEN
2367: arp_standard.debug(' AR_CMGT_ALLOW_SUMMARY_TABLE_REFRESH = N');

Line 2514: fnd_file.put_line(fnd_file.log,'arp_trx_summary_pkg.process_held_events()+');

2510: l_industry VARCHAR2(1); -- junk variable
2511: l_schema VARCHAR2(30);
2512: l_count NUMBER := 0;
2513: BEGIN
2514: fnd_file.put_line(fnd_file.log,'arp_trx_summary_pkg.process_held_events()+');
2515:
2516: IF PG_DEBUG in ('Y','C')
2517: THEN
2518: arp_standard.debug('ar_trx_summary_pkg.process_held_events()+');

Line 2598: fnd_file.put_line(fnd_file.log,' events processed = ' || l_count);

2594: l_list.DELETE;
2595: l_count := l_count + 1;
2596: END LOOP;
2597:
2598: fnd_file.put_line(fnd_file.log,' events processed = ' || l_count);
2599:
2600: /* Clean out the AR_SUM_REF_EVENT_HIST table */
2601: IF FND_INSTALLATION.get_app_info('AR', l_status, l_industry, l_schema)
2602: THEN

Line 2629: fnd_file.put_line(fnd_file.log,'arp_trx_summary_pkg.process_held_events()-');

2625: WHERE CONCURRENT_PROGRAM_NAME = 'ARSUMREF';
2626:
2627: COMMIT;
2628:
2629: fnd_file.put_line(fnd_file.log,'arp_trx_summary_pkg.process_held_events()-');
2630:
2631: IF PG_DEBUG in ('Y','C')
2632: THEN
2633: arp_standard.debug('ar_trx_summary_pkg.process_held_events()-');