Issue: Concurrent request completed with below Error.
This request finished with an error and produced the following completion message: The executable file /test1/apps/fs2/EBSapps/appl/fnd/12.0.0/bin/XXCUST_PROG for this concurrent program cannot be executed.
ERROR:
The executable file /test1/apps/fs2/EBSapps/appl/fnd/12.0.0/bin/XXCUST_PROG for this concurrent program cannot be executed.
Contact your system administrator or support representative.
Cause:
Verify that the execution path to the executable file
Run the below command
$ls -lrt /test1/apps/fs2/EBSapps/appl/fnd/12.0.0/bin/XXCUST_PROG
Output of the above command shows executable is pointing to a wrong symbolic link
Solution:
1.Create a soft link with the program name as below:
$cd /test1/apps/fs2/EBSapps/appl/fnd/12.0.0/bin/
$ln -s -f $FND_TOP/bin/fndcpesr XXCUST_PROG
2. Re-run the concurrent program and test the issue.