Run the following script to get the concurrent program details and the parameters used in the concurrent program.
SELECT fcpl.user_concurrent_program_name
, fcp.concurrent_program_name
, par.end_user_column_name
, par.form_left_prompt prompt
, par.enabled_flag
, par.required_flag
, par.display_flag
FROM fnd_concurrent_programs fcp
, fnd_concurrent_programs_tl fcpl
, fnd_descr_flex_col_usage_vl par
WHERE fcp.concurrent_program_id = fcpl.concurrent_program_id
AND fcpl.user_concurrent_program_name = &conc_prg_name
AND fcpl.LANGUAGE = 'US'
AND par.descriptive_flexfield_name = '$SRS$.' || fcp.concurrent_program_name
If you run this script it will ask you the name of concurrent program as an input parameter. Provide the name of the concurrent program within single quotes to run the scripts successfully and get the details.
Other Important Articles Related To Concurrent Programs:
- Apps Initialization Script | Script To Set Context and Profile Values From Back-End in R12 Oracle apps
- Different Concurrent Program Executable Methods In Oracle Apps
- How To Find All The Running Concurrent Requests And The Time Taken By Them
- Meaning Of Different Status Codes And Phase Codes Used In Concurrent Programs
- SQL Query To Find Scheduled Or On Hold Concurrent Request
- SQL Query To Find Parameters and Value Sets Associated With A Concurrent Program
- SQL Query To Find The Request Group Using An Executable | Important Apps Queries
- Two Mandatory Pl/Sql Parameters Passed In Concurrent Programs
COMMENTS