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!

What's wrong in my authorization schema ?

GeekintoJun 21 2015 — edited Jun 22 2015

Hi all,

I use APEX 5

And i beginner in apex5

My problem is:

i created authorization for  navigation menu / list entry ..


Details:

My authorization type: PL/SQL function returning boolean  Evaluation Point: Once per component

My function is:

create or replace function fun_auth_menu

return boolean

is

Begin@@

  if v('APP_COMPONENT_NAME') = 'test'   -- 'test' it's the name of list entry

  then return true;

  else return false;

  end if;

End;

But not worked when select this Authorization Scheme for list entry  .

Whats Wrong .. ?

Please Help me ..

@"Jitendra"

This post has been answered by Christian Neumueller-Oracle on Jun 22 2015
Jump to Answer
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Jul 20 2015
Added on Jun 21 2015
12 comments
2,092 views