FND_REQUEST.SUBMIT_REQUEST in Oracle Apps

FND_REQUEST.SUBMIT_REQUEST in Oracle Apps, askhareesh blog for Oracle Apps
When we want to submit the request/concurrent program from the back end, then we use this API.

Syntax:

FND_REQUEST.SUBMIT_REQUEST
(
Application,      --> we have to pass the short name of the application concurrent Program in which we     registered (Ex: Oracle Receivables = AR).
Program,          --> Pass the short name of the concurrent program
Description,      -->description of the concurrent program
Start-time,         --> start time of the concurrent program
Sub-request,     --> if there any other request, pass true other wise false.
Arg-1,               --> these arg1 to arg100 are used to pass the parameters to the concurrent program.
Arg2,
Arg3,
--
--
--
Arg100
);

Totally, 105 parameters are in FND_REQUEST.SUBMIT_REQUEST API .


*/

No comments:

Post a Comment