Fnd_request.submit_request [message #462720] |
Sat, 26 June 2010 01:58 |
ashokb21
Messages: 92 Registered: May 2010
|
Member |
|
|
hi,
i am established a custom form in 6i,i want to add a code to submit request on when button press trigger of which is r12 i am using same code for 11i but its showing soming error kindly help me to resolve this error.
fnd_global.apps_initialize( user_id => 1449, resp_id => 20420, resp_appl_id =>1);
l_success :=
fnd_request.submit_request
('INV', -- Application Short name of the Concurrent Program.
'XX_DEMPO_BATCH_CREATION_MINE', -- Program Short Name.
'XX_DEMPO_BATCH_CREATION_MINE', -- Description of the Program.
SYSDATE, -- Submitted date. Always give the SYSDATE.
FALSE ,-- Always give the FLASE.
'BDW', -- Passing the Value to the First Parameter of the report.
1,
20060131
--'N',
---'N'
);
COMMIT;
|
|
|
Re: Fnd_request.submit_request [message #462722 is a reply to message #462720] |
Sat, 26 June 2010 02:40 |
|
vamsi kasina
Messages: 2112 Registered: October 2003 Location: Cincinnati, OH
|
Senior Member |
|
|
Quote:i am using same code for 11i but its showing soming error What error?
How do you expect others to know the error, without telling that?
Also post your questions in appropriate forum. This is more Oracle Applications question than Oracle Forms.
resp_appl_id => 1? SYSADMIN?
XX_DEMPO_BATCH_CREATION_MINE is related to SYSADMIN?
If you are passing INV as application_short_name, your program might be related to INV.
Do you know why you are calling "fnd_global.apps_initialize" and its purpose?
Check which user and responsibility are having access to your concurrent program and pass the parameters to "fnd_global.apps_initialize" accordingly.
By
Vamsi
|
|
|