Home » Applications » Oracle Fusion Apps & E-Business Suite » How to run a ready concurrent program from own form (10.1.2.0.2)
How to run a ready concurrent program from own form [message #621842] Tue, 19 August 2014 01:40 Go to next message
alex_shynk
Messages: 22
Registered: July 2014
Junior Member
I have written package's procedure
procedure use_concur1(errbuf out varchar2,
                      retcode out varchar2,
                      par1 varchar2, 
                      par2 number, 
                      par3 date)
as
  res_ varchar2(255);
begin
  res_ := 'parameter_1='''||par1||''', '||
          'parameter_2='''||to_char(par2)||''', '||
          'parameter_3='''||to_char(par3)||''';';
  insert into tuse_concurrent_oshynk(value_) values(res_);
  
  FND_FILE.PUT_LINE(FND_FILE.LOG, res_);
end use_concur1;



2. I have registered executable file
3. I have created definition for the program
4. I have linked the program to one responsibility
5. I have created request for my concurrent program
Its works fine


Next, I want to run this program from my form use packages FND_PROGRAM, FND_REQUEST.
In the Internet much info about procedures of packages FND_PROGRAM, FND_REQUEST but it is nothing an info about order running those procedures

Please, who know, write here how to run concurrent program
Re: How to run a ready concurrent program from own form [message #622688 is a reply to message #621842] Thu, 28 August 2014 09:33 Go to previous message
vamsi kasina
Messages: 2112
Registered: October 2003
Location: Cincinnati, OH
Senior Member
Alex,

Does your form have the input fields for the parameter of the concurrent program?
If yes, you can use fnd_request.submit_request.
More details check the guide point 4 & 6.

By
Vamsi
Previous Topic: Wrong Distribution Account in Receivable Transaction
Next Topic: Getting error while receving item - Purchasing
Goto Forum:
  


Current Time: Thu Mar 28 05:33:26 CDT 2024