Home » Developer & Programmer » Forms » FND_REQUEST.SUBMIT_REQUEST (Forms version 10g)
FND_REQUEST.SUBMIT_REQUEST [message #623833] Mon, 15 September 2014 05:06 Go to next message
Heisenberg
Messages: 6
Registered: September 2014
Location: India
Junior Member
I want to call another concurrent program from a button in forms...
When compiled, I'm getting the following error

Error 201
Identifier FND_REQUEST.SUBMIT_REQUEST must be declared.

Does 10g support this command and if not what is the alternate??? someone help pls.....


declare
req_id number;
begin
req_id := FND_REQUEST.SUBMIT_REQUEST(XXATCUST,XXATPSN, NULL, SYSDATE, FALSE, 'Batch_ID', NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,
NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL);
if (req_id = 0) then
/* Handle submission error */
FND_MESSAGE.RETRIEVE;
FND_MESSAGE.ERROR;
else
commit;
end if;
end;
Re: FND_REQUEST.SUBMIT_REQUEST [message #623835 is a reply to message #623833] Mon, 15 September 2014 05:14 Go to previous messageGo to next message
mist598
Messages: 1195
Registered: February 2013
Location: Hyderabad
Senior Member
Quote:
Error 201
Identifier FND_REQUEST.SUBMIT_REQUEST must be declared.

Check the parameter's , i mean only 100 parameter is sufficient ...

while creating concurrent used 100 parameter's only
Re: FND_REQUEST.SUBMIT_REQUEST [message #623852 is a reply to message #623835] Mon, 15 September 2014 08:28 Go to previous messageGo to next message
CraigB
Messages: 386
Registered: August 2014
Location: Utah, USA
Senior Member
Quote:
Error 201
Identifier FND_REQUEST.SUBMIT_REQUEST must be declared.

Does 10g support this command and if not what is the alternate??? someone help pls.....

It's not a question of "Does Forms 10g support the command", it is a question of "Forms 10g can't find this program". Make sure you have all of your Oracle Enterprise Business Suite (EBS) libraries in a directory that is listed in your FORMS_PATH and that you are connected to the database with a user that has execute on the FND_REQUEST package.

Craig...
Re: FND_REQUEST.SUBMIT_REQUEST [message #623900 is a reply to message #623852] Tue, 16 September 2014 02:00 Go to previous message
Heisenberg
Messages: 6
Registered: September 2014
Location: India
Junior Member
Thanks Craig... However, the mistake was so silly... I just didn't connect with the database and that's the reason it wasn't able to identify the function. Anyways, thanks for your time.
Previous Topic: Cursor Position in Forms 6i Multi-Line Text Item
Next Topic: Forms crashes when opened again after compilation
Goto Forum:
  


Current Time: Fri Mar 29 01:33:47 CDT 2024