google analytics

meta

adsense

Friday, July 29, 2011

Oracle Applications - Query to get incompatible programs



SELECT fat.APPLICATION_NAME,
         fctl.user_concurrent_program_name,
         DECODE (TO_RUN_TYPE, 'S', 'Set', 'Program') TYPE,
         DECODE (INCOMPATIBILITY_TYPE, 'G', 'Global', 'Domain')
            "Incompatibilty Type"
    FROM FND_CONCURRENT_PROGRAM_SERIAL fcrs,
         FND_CONCURRENT_PROGRAMS_TL fctl,
         FND_APPLICATION_TL fat
   WHERE     fcrs.RUNNING_APPLICATION_ID = fat.application_id
         AND (RUNNING_CONCURRENT_PROGRAM_ID = 32045) -- CP id of the program in question
         AND fctl.CONCURRENT_PROGRAM_ID = fcrs.TO_RUN_CONCURRENT_PROGRAM_ID
         AND fctl.LANGUAGE = 'US'
         AND fat.LANGUAGE = 'US'
ORDER BY to_run_application_id, to_run_concurrent_program_id;

2 comments:

  1. Great ! I tried another program to do so but that failed to show all the programs that are incompatible. After examining the above code I got to know my mistake and even it is a better solution. Thanks for sharing the code statements.
    sap upgrades

    ReplyDelete
  2. The administrative tasks are executed through a web GUI or from the command line interface, where commands for regular administrative tasks can be scripted and simply run whenever required.
    salesforce custom dashboard

    ReplyDelete

LinkWithin

Related Posts Plugin for WordPress, Blogger...