DBA Data[Home] [Help]

APPS.CSI_TRANSACTION_IMPORT_PVT dependencies on FND_FILE

Line 149: fnd_file.put_line(fnd_file.log, 'Number of Active Workers '||l_active_num);

145: AND FCP.application_id = 542
146: AND FCP.concurrent_program_name = 'CSITXIMW'
147: AND FCR.phase_code IN ('I','P','R');
148:
149: fnd_file.put_line(fnd_file.log, 'Number of Active Workers '||l_active_num);
150: --check number of workers currently running
151: if l_max_worker_number <= l_active_num then
152: debug('Requested '||l_max_worker_number||' workers, but there are already '||l_active_num||' active workers');
153: RETCODE := 'Success';

Line 167: fnd_file.put_line(fnd_file.log, 'Number of Workers Available '||l_num_workers);

163: l_num_workers := 30;
164: end if;
165:
166: debug('Number of Workers Available '||l_num_workers);
167: fnd_file.put_line(fnd_file.log, 'Number of Workers Available '||l_num_workers);
168: --batch rows
169: l_batch_lower_limit := group_rows(l_num_workers);
170: debug('Function Group_Rows returns with value '||l_batch_lower_limit);
171:

Line 190: --fnd_file.put_line(fnd_file.log,'Request Id '|| l_request_id || ' for batch ID '|| cur_batch.batch_id);

186: ,p_purge_option
187: );
188:
189: debug('Request Id '|| l_request_id || ' for batch ID '|| cur_batch.batch_id);
190: --fnd_file.put_line(fnd_file.log,'Request Id '|| l_request_id || ' for batch ID '|| cur_batch.batch_id);
191:
192: IF ((l_request_id = 0) OR (l_request_id IS NULL)) then
193:
194: --FND_MESSAGE.RETREIVE;