DBA Data[Home] [Help]

APPS.CST_ACCRUAL_LOAD dependencies on FND_CONCURRENT_REQUESTS

Line 639: FROM FND_CONCURRENT_REQUESTS FCR

635:
636: /* check for incompatibility. If there is another load running for the same OU,error out this one */
637: --{BUG 12625738
638: /*SELECT FCR.argument1 into l_req_arg
639: FROM FND_CONCURRENT_REQUESTS FCR
640: WHERE FCR.concurrent_program_id = FND_GLOBAL.CONC_PROGRAM_ID
641: AND FCR.program_application_id = FND_GLOBAL.PROG_APPL_ID
642: AND FCR.request_id = FND_GLOBAL.CONC_REQUEST_ID;
643:

Line 647: FROM FND_CONCURRENT_REQUESTS FCR

643:
644: debug(' l_req_arg:'||l_req_arg);
645:
646: SELECT count(*) into l_req_running
647: FROM FND_CONCURRENT_REQUESTS FCR
648: WHERE FCR.concurrent_program_id = FND_GLOBAL.CONC_PROGRAM_ID
649: AND FCR.program_application_id = FND_GLOBAL.PROG_APPL_ID
650: AND FCR.phase_code = 'R'
651: AND FCR.argument1 = l_req_arg;*/

Line 654: FROM FND_CONCURRENT_REQUESTS FCR

650: AND FCR.phase_code = 'R'
651: AND FCR.argument1 = l_req_arg;*/
652:
653: SELECT count(*) into l_req_running
654: FROM FND_CONCURRENT_REQUESTS FCR
655: WHERE FCR.concurrent_program_id = FND_GLOBAL.CONC_PROGRAM_ID
656: AND FCR.program_application_id = FND_GLOBAL.PROG_APPL_ID
657: AND FCR.phase_code = 'R'
658: AND FCR.org_id = p_operating_unit;