Skip to Main Content

APEX

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!

Submit EBS Concurrent Request from apex button page

user12165653Jul 21 2020 — edited Aug 3 2020

Hi everyone ,I have a question for you:

I know it is possible submit an EBS concurrent request from apex page.

we have integrated EBS rel12 with apex 19.2 and i would like execute api fnd_request.submit_request from a button using a dynamic action.

I tried but it doesn't work.

This is the code maybe i have to set some properties:

Declare

l_request_id Number;

Begin

fnd_global.apps_initialize(1976, 20420,1);

l_request_id := apps.fnd_request.submit_request(

application => 'PO',

program => 'ENAVBEF',

description => 'ENAV - Accertamento Regolare Prestazione',

start_time => SYSDATE,

sub_request => FALSE,

argument1 => '65764',

argument2 => '37'

);

end;

when i click on button it doesn't work.

The Apex version is 19.2.0.00.18 integrated with E-business suite release 12.2.5 and Oracle Database 12c Enterprise Edition Release 12.1.0.2.0 - 64bit.

Anyone has suggestions?

Thanks

Stefano

Comments
Post Details
Added on Jul 21 2020
4 comments
1,534 views