Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations IamaSherpa on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

running concurrent manager using fnd_request.submit_request

Status
Not open for further replies.

Guest_imported

New member
Jan 1, 1970
0
I have a custom procedure registered with OA with its standard out parameters.When i run from oracle application it runs fine but when i try to put it as a part of a pl/sql procedure using fnd_request.submit_request it fails saying incorrect number of arguments passed. I tried using CONCSUB also the same issue

Any ideas?

Thanks

Satish
 
l_req_id := fnd_request.submit_request(

application => 'TA',

program => 'READERS2TIME',

argument1 => l_first_employee,

argument2 => l_last_employee,

argument3 =>
to_char(P_pay_period_end_date,'DD-MON-YY'));


is an example we made, we faked a new Application in the Concurrent Manager but you can use a stock Application if you put the program in a stock place
I tried to remain child-like, all I acheived was childish.
 
Hi,

Can I call FND_REQUEST.SUBMIT_REQUEST from a C++ program..?
If so pl tell me how..

Thanks in Advance.!!
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top