DBA Data[Home] [Help]

APPS.AR_POSTBATCH_PARALLEL dependencies on STANDARD

Line 23: | arp_standard.debug() - debug procedure |

19: | SCOPE - PUBLIC |
20: | |
21: | EXETERNAL PROCEDURES/FUNCTIONS ACCESSED |
22: | arp_util.debug - debug procedure |
23: | arp_standard.debug() - debug procedure |
24: | FND_REQUEST.wait_for_request |
25: | ARGUMENTS : IN: |
26: | p_org_id - Org ID |
27: | p_batch_id - Batch Id |

Line 173: arp_standard.sysparm.set_of_books_id,

169: SYSDATE,
170: FALSE,
171: '1',
172: NVL(p_batch_id, -1),
173: arp_standard.sysparm.set_of_books_id,
174: p_worker_number,
175: p_total_workers,
176: NVL(p_transmission_id, -1),
177: p_org_id);

Line 292: arp_standard.init_standard(p_org_id);

288: mo_global.init('AR');
289:
290: IF p_org_id is not null THEN
291: mo_global.set_policy_context('S', p_org_id);
292: arp_standard.init_standard(p_org_id);
293: END IF;
294:
295: IF p_batch_id IS NULL AND p_transmission_id IS NULL THEN
296: FND_MESSAGE.set_name ('AR', 'AR_ARGUEMENTS_FAIL' );

Line 301: arp_standard.debug( 'Org_id = '||p_org_id );

297: APP_EXCEPTION.raise_exception;
298: END IF;
299:
300: IF PG_DEBUG in ('Y', 'C') THEN
301: arp_standard.debug( 'Org_id = '||p_org_id );
302: arp_standard.debug( 'Batch Id = '||p_batch_id );
303: arp_standard.debug( 'Transmission_id = '||p_transmission_id );
304: arp_standard.debug( 'Total Workers = '||p_total_workers );
305: END IF;

Line 302: arp_standard.debug( 'Batch Id = '||p_batch_id );

298: END IF;
299:
300: IF PG_DEBUG in ('Y', 'C') THEN
301: arp_standard.debug( 'Org_id = '||p_org_id );
302: arp_standard.debug( 'Batch Id = '||p_batch_id );
303: arp_standard.debug( 'Transmission_id = '||p_transmission_id );
304: arp_standard.debug( 'Total Workers = '||p_total_workers );
305: END IF;
306:

Line 303: arp_standard.debug( 'Transmission_id = '||p_transmission_id );

299:
300: IF PG_DEBUG in ('Y', 'C') THEN
301: arp_standard.debug( 'Org_id = '||p_org_id );
302: arp_standard.debug( 'Batch Id = '||p_batch_id );
303: arp_standard.debug( 'Transmission_id = '||p_transmission_id );
304: arp_standard.debug( 'Total Workers = '||p_total_workers );
305: END IF;
306:
307: -- Validate batches supplied in the parameters.

Line 304: arp_standard.debug( 'Total Workers = '||p_total_workers );

300: IF PG_DEBUG in ('Y', 'C') THEN
301: arp_standard.debug( 'Org_id = '||p_org_id );
302: arp_standard.debug( 'Batch Id = '||p_batch_id );
303: arp_standard.debug( 'Transmission_id = '||p_transmission_id );
304: arp_standard.debug( 'Total Workers = '||p_total_workers );
305: END IF;
306:
307: -- Validate batches supplied in the parameters.
308: IF NVL(p_transmission_id,-1) <> -1 THEN

Line 414: arp_standard.debug ( 'The Master program waits for child processes');

410: submit_subrequest (l_worker_number,p_org_id);
411: END LOOP;
412:
413: IF PG_DEBUG in ('Y', 'C') THEN
414: arp_standard.debug ( 'The Master program waits for child processes');
415: END IF;
416:
417: -- Wait for the completion of the submitted requests
418: FOR i in 1..p_total_workers LOOP