DBA Data[Home] [Help]

APPS.ARP_PROCESS_BOE dependencies on AR_SYSTEM_PARAMETERS

Line 404: /* Bug 5699734 - Changed the logic of getting the org_id - Getting from ar_system_parameters is more reliable */

400: -- to DD-MON-YYYY format, so that the call succeeds for any
401: -- NLS date format.
402: --
403: /* Bug 5190715 */
404: /* Bug 5699734 - Changed the logic of getting the org_id - Getting from ar_system_parameters is more reliable */
405: IF PG_DEBUG in ('Y', 'C') THEN
406: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
407: END IF;
408: -- l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));

Line 406: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);

402: --
403: /* Bug 5190715 */
404: /* Bug 5699734 - Changed the logic of getting the org_id - Getting from ar_system_parameters is more reliable */
405: IF PG_DEBUG in ('Y', 'C') THEN
406: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
407: END IF;
408: -- l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
409: SELECT org_id
410: INTO l_org_id

Line 411: FROM ar_system_parameters;

407: END IF;
408: -- l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
409: SELECT org_id
410: INTO l_org_id
411: FROM ar_system_parameters;
412: --l_org_id := nvl(mo_global.get_current_org_id, mo_utils.get_default_org_id);
413:
414: fnd_request.set_org_id(l_org_id);
415: l_request_id := FND_REQUEST.submit_request( 'AR',

Line 530: /* Bug 5699734 - Changed logic to get org_id - Getting from ar_system_parameters would be more reliable */

526: --
527: -- Call the concurrent program
528: --
529: /* Additional Fix identified as a part of Bug 5699734 */
530: /* Bug 5699734 - Changed logic to get org_id - Getting from ar_system_parameters would be more reliable */
531: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
532: IF PG_DEBUG in ('Y', 'C') THEN
533: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
534: END IF;

Line 533: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);

529: /* Additional Fix identified as a part of Bug 5699734 */
530: /* Bug 5699734 - Changed logic to get org_id - Getting from ar_system_parameters would be more reliable */
531: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
532: IF PG_DEBUG in ('Y', 'C') THEN
533: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
534: END IF;
535: SELECT org_id
536: INTO l_org_id
537: FROM ar_system_parameters;

Line 537: FROM ar_system_parameters;

533: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
534: END IF;
535: SELECT org_id
536: INTO l_org_id
537: FROM ar_system_parameters;
538: -- l_org_id := nvl(mo_global.get_current_org_id, mo_utils.get_default_org_id);
539: /* Fix bug 5699734 ends */
540:
541: fnd_request.set_org_id(l_org_id);

Line 648: /* Bug 5699734 - Changed the logic of getting org_id - Getting from ar_system_parameters would be more reliable */

644: --
645: -- Call the concurrent program
646: --
647: /* Additional Fix identified as a part of Bug 5699734*/
648: /* Bug 5699734 - Changed the logic of getting org_id - Getting from ar_system_parameters would be more reliable */
649: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
650: IF PG_DEBUG in ('Y', 'C') THEN
651: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
652: END IF;

Line 651: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);

647: /* Additional Fix identified as a part of Bug 5699734*/
648: /* Bug 5699734 - Changed the logic of getting org_id - Getting from ar_system_parameters would be more reliable */
649: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
650: IF PG_DEBUG in ('Y', 'C') THEN
651: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
652: END IF;
653: SELECT org_id
654: INTO l_org_id
655: FROM ar_system_parameters;

Line 655: FROM ar_system_parameters;

651: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
652: END IF;
653: SELECT org_id
654: INTO l_org_id
655: FROM ar_system_parameters;
656: --l_org_id := nvl(mo_global.get_current_org_id, mo_utils.get_default_org_id);
657: /* Fix for bug 5699734 ends */
658:
659: fnd_request.set_org_id(l_org_id);

Line 822: /* Bug 5699734 - Changed logic for getting the org_id - Getting from ar_system_parameters would be more reliable */

818: -- to DD-MON-YYYY format, so that the call succeeds for any
819: -- NLS date format.
820: --
821: /* Fix for Bug 5699734 - Wrong org being set because of FND_PROFILE.value('ORG_ID') */
822: /* Bug 5699734 - Changed logic for getting the org_id - Getting from ar_system_parameters would be more reliable */
823: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
824: IF PG_DEBUG in ('Y', 'C') THEN
825: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
826: END IF;

Line 825: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);

821: /* Fix for Bug 5699734 - Wrong org being set because of FND_PROFILE.value('ORG_ID') */
822: /* Bug 5699734 - Changed logic for getting the org_id - Getting from ar_system_parameters would be more reliable */
823: --l_org_id := TO_NUMBER(FND_PROFILE.value('ORG_ID'));
824: IF PG_DEBUG in ('Y', 'C') THEN
825: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
826: END IF;
827: SELECT org_id
828: INTO l_org_id
829: FROM ar_system_parameters;

Line 829: FROM ar_system_parameters;

825: arp_standard.debug('Selecting org_id from ar_system_parameters and p_batch_id : '||p_batch_id);
826: END IF;
827: SELECT org_id
828: INTO l_org_id
829: FROM ar_system_parameters;
830: --l_org_id := nvl(mo_global.get_current_org_id, mo_utils.get_default_org_id);
831: /* Fix for Bug 5699734 ends */
832:
833: fnd_request.set_org_id(l_org_id);