Monday, March 26, 2012

AACG Concurrent program not found

Problem

1. Query an user in user form and add a responsibility which gets end dated automatically due to setup in pre-requisite,
2. Click on Action in menu bar>Activate Responsibilities
3. A form 'Activate Responsibilities' opens. Go to the responsibility which is end dated and remove the end date.
4. Click on Initiate Conflict Analysis button
5. A form 'Initiate Conflict Analysis' form opens. Click Submit button
6. A message is thrown 'Concurrent program not found'.

Solution

Enabled the trace, performed the same steps. Ran tkprof on generated trace file. Got the concurrent program short name from the SQL in the tkprof output.

SELECT B.APPLICATION_SHORT_NAME
FROM
FND_CONCURRENT_PROGRAMS_VL A , FND_APPLICATION_VL B WHERE A.APPLICATION_ID
= B.APPLICATION_ID AND A.CONCURRENT_PROGRAM_NAME =
'LAA_COMPLETE_CONFLICT_ANALYSIS' AND A.ENABLED_FLAG = 'Y'

Verified the program from EBS. As the Segregation of Duties - Complete Conflict Analysis program is not enabled we are getting this error.

Enable the Segregation of Duties - Complete Conflict Analysis concurrent program will fix the issue.

No comments:

Post a Comment