Friday, November 20, 2015

Query to get the Concurrent Programs Details

SELECT   DISTINCT fcp.user_concurrent_program_name "Concurrent Program Name",fcp.description "Concurrent Program Description",
fef.executable_name"Executable Name",fef.description "Executable Description",fef.execution_file_name "Procedure Name"
    FROM fnd_executables_form_v fef,fnd_concurrent_programs_vl fcp
   WHERE fcp.APPLICATION_ID=fef.APPLICATION_ID
   AND fef.EXECUTABLE_ID=fcp.EXECUTABLE_ID
   AND fef.executable_name='XX_EXECUTABLE'---Youer Executable Name
  AND fcp.user_concurrent_program_name='Program Name'--Your Consurrent Program name

No comments:

Post a Comment

Launch Concurrent Program from Menu

The below detailed steps help you to call concurrent program form Menu. Step 1: Create a Form Function Navigation: Application Develope...