GeekInterview.com
  I am new, Sign me up!
 
GeekInterview.com  >  Interview Questions  >  Oracle Apps  >  Apps Technical
Go To First  |  Previous Question  |  Next Question 
 Apps Technical  |  Question 56 of 129    Print  
How to submit concurrent program through pl/sql?

  
Total Answers and Comments: 6 Last Update: October 02, 2009     Asked by: SRINIVAS 
  
 Sponsored Links

 
 Best Rated Answer

No best answer available. Please pick the good answer available or submit your answer.
March 09, 2006 08:59:25   #1  
satish        

RE: Hi,How to submit concurrent program through ...

fnd_request.submit_request(parameters) by using this we can submit the concurrent program thru pl/sql.


 
Is this answer useful? Yes | No
April 12, 2006 02:44:44   #2  
Visitor        

RE: Hi,How to submit concurrent program through ...

May need to include a line before this for Apps initialization:

FND_GLOBAL.APPS_INITIALIZE (user_id resp_id resp_appl_id)


 
Is this answer useful? Yes | No
April 14, 2006 06:57:43   #3  
amit.aticool@gmail.com Member Since: April 2006   Contribution: 1    

RE: Hi,How to submit concurrent program through ...
through the help of the PL /QCl Coding
 
Is this answer useful? Yes | No
May 24, 2006 03:33:05   #4  
Vijayveer Singh        

RE: Hi,How to submit concurrent program through ...

The below procedure will submit the request from the back end where

application is Short name of application under which the program is registered.

program is concurrent program name for which the request has to be submitted

declare
conc_id number(10);

begin
FND_GLOBAL.APPS_INITIALIZE (user_id resp_id resp_appl_id);
conc_id: submit_request('application' 'program');
dbms_output.put_line(conc_id);
end;

The above program will print the Concurrent request ID.


 
Is this answer useful? Yes | No
July 25, 2006 08:58:15   #5  
arun        

RE: Hi,How to submit concurrent program through ...
How to pass the parameters required by the concurrent process which we trigger thru PL/SQL
 
Is this answer useful? Yes | No
October 02, 2009 13:58:40   #6  
Adi_phaniK Member Since: September 2009   Contribution: 6    

RE: How to submit concurrent program through pl/sql?
If you want to run a concurrent request in application through PL/SQL code then you can used an inbuilt funtion in Apps.

Fnd_request.submit_Request

 
Is this answer useful? Yes | No


 
Go To Top


 Sponsored Links

 
About Us -  Privacy Policy -  Terms and Conditions -  Contact -  Ask Question -  Propose Category -  Site Updates 

Copyright © 2005 - 2009 GeekInterview.com. All Rights Reserved

Page copy protected against web site content infringement by Copyscape