Skip to Main Content

Oracle Forms

Announcement

For appeals, questions and feedback about Oracle Forums, please email oracle-forums-moderators_us@oracle.com. Technical questions should be asked in the appropriate category. Thank you!

Form Personalization: How to display the request id as a message

574184Apr 3 2008 — edited Apr 3 2008
Hi All,


I want to achieve the following through form personalization.

The requirement is to submit a concurrent program on clicking a Menu item.
Say Tools -> Submit Test Program. After the concurrent Program is sumbitted the Request Id should be Displayed as a message to the user.

I was able to sumbit the required concurrent program by using Action Type BuiltIn and BuiltIn Type Execute A Procedure.

The problem I face is I coulnt display the request id as a message .

The Code that I used is

='DECLARE
X_REQUEST_ID NUMBER;
BEGIN
X_REQUEST_ID :=fnd_request.submit_request( APPLICATION => ''AR'',
PROGRAM => 'XXX_TEST'',
DESCRIPTION => '''',
START_TIME =>'''',
SUB_REQUEST => FALSE);'||
:GLOBAL.X_REQ_ID||':=X_REQUEST_ID;
commit;
END'


Couldnt assign the request id to global variable.

The global variable value is used in message Action Type to display the value to user.

Is any other workaround posible?

Thanks,
Priya.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on May 1 2008
Added on Apr 3 2008
1 comment
2,084 views