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!

Show / Hide DOWMLOAD link in classical report based on user rights

VedantFeb 8 2013 — edited Feb 19 2013
Hi,
using apex 4.1.
How i can display or hide download link in classical report based on user rights .

The User who has download rights ,can download the data from classical report Otherwise it should hide.


I have passed the code in authorization scheme in shared component as named "VIEW"

DECLARE
 VNAME VARCHAR2(1000);
BEGIN
SELECT PAGE_NAME INTO VNAME FROM APEX_APPLICATION_PAGES WHERE PAGE_ID = :APP_PAGE_ID AND APPLICATION_ID = :APP_ID;
return GET_ADMIN_STATUS_VIEW_NEW(:APP_USER,VNAME);
END;
How i can call "VIEW'' name in download link.
Comments
Locked Post
New comments cannot be posted to this locked post.
Post Details
Locked on Mar 19 2013
Added on Feb 8 2013
5 comments
499 views