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"