Suppress child-request from appearing in Oracle Concurrent Requests screen [message #494150] |
Fri, 11 February 2011 09:45 |
trowsdale
Messages: 17 Registered: April 2005
|
Junior Member |
|
|
Suppress child-request from appearing in Oracle Concurrent Requests screen.
Hi
I have a concurrent program with Executable type of PL/SQL
In that PL/SQL, I also submit another concurrent program example:
l_request_id :=
fnd_request.submit_request
(application => 'XXFIN',
program => 'XXFIN_TEST',
sub_request => FALSE, -- not needed
argument1 => 'ABC');
When I start the main program from the Concurrent Requests screen, it starts up, then submits the child-request, which also shows up on the Concurrent Requests screen.
If possible, how can I suppress that child-request ('XXFIN_TEST') from showing on the Concurrent Requests screen?
Thanks!!
|
|
|