DBA Data[Home] [Help]

APPS.CST_ACCRUAL_LOAD dependencies on FND_CONCURRENT_REQUESTS

Line 655: FROM FND_CONCURRENT_REQUESTS FCR

651:
652: /* check for incompatibility. If there is another load running for the same OU,error out this one */
653:
654: SELECT FCR.argument1 into l_req_arg
655: FROM FND_CONCURRENT_REQUESTS FCR
656: WHERE FCR.concurrent_program_id = FND_GLOBAL.CONC_PROGRAM_ID
657: AND FCR.program_application_id = FND_GLOBAL.PROG_APPL_ID
658: AND FCR.request_id = FND_GLOBAL.CONC_REQUEST_ID;
659:

Line 663: FROM FND_CONCURRENT_REQUESTS FCR

659:
660: debug(' l_req_arg:'||l_req_arg);
661:
662: SELECT count(*) into l_req_running
663: FROM FND_CONCURRENT_REQUESTS FCR
664: WHERE FCR.concurrent_program_id = FND_GLOBAL.CONC_PROGRAM_ID
665: AND FCR.program_application_id = FND_GLOBAL.PROG_APPL_ID
666: AND FCR.phase_code = 'R'
667: AND FCR.argument1 = l_req_arg;