You are on page 1of 1

/* <Title>

A pl/sql query to find concurrent programs attached to a request set, by giving


request set name as input in oracle apps.

</Title>

<Summary>

The pl/sql query will help in finding the concurrent programs attached to a request
set in Oracle Applications

</Summary>

< packaging>

------- the below is the code snippet

SELECT user_concurrent_program_name
FROM fnd_concurrent_programs_tl
WHERE concurrent_program_id IN (
SELECT concurrent_program_id
FROM fnd_request_set_programs
WHERE request_set_id =
(SELECT request_set_id
FROM fnd_request_sets_tl
WHERE user_request_set_name LIKE
'<Request_Set_Name>'));

</packaging>

<other>

If concurrent program needs to be found for set of Request sets then 'IN' clause
can be used, and the same query can be used for finding concurrent programs
attached to a single request set by using '=' symbol.

</other>
*/

You might also like