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!

Multiple parameter for On Demand - Run this process when required by AJAX

Ravi10Sep 19 2015 — edited Jan 11 2016

Hi all,

  I am using apex 5.0,

I have an classic report the columns are

No               Code     Type       Id          Name

10               111        Ban        100        AAA

10               111        Ban        101        BBB

12               112        Cal         1001      XXX

14               177        Mum       2911      XYZ

I Have created On Demand - Run this process when required by AJAX

Parameters for below query is from the above report

Declare

Cursor C1 is

Select No, Code, Type, Id, Name from test

where No = apex_application.g_x01

Code = apex_application.g_x02

Type = apex_application.g_x03

Begin

.......

end;


My problem is when i pass No = apex_application.g_x01 its working.

if i pass other parameter by like code, type using apex_application.g_x02,  and apex_application.g_x03 it is not displaying any row.

it is not accepting the value of g_x02 and g_x03.


How to pass multiple parameter


Thanks in advance


Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Feb 8 2016
Added on Sep 19 2015
5 comments
1,038 views