Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
helen_pip
Creator III
Creator III

Message Box for users without access to a sheet

Hello

I have a front page in my qikview document.   On this front pages are buttons which users can use to go further into the document depending on what they want to see and their access rights

I have set up restrictions in my script which does not allow certain pages: Script is below

 

 

 

SECTION ACCESS;

LOAD * INLINE [

    ACCESS, USERID, LEVEL

    USER, 1, DETAIL

    USER, 2,NO_DETAIL

    ADMIN, 3, DETAIL

];

Section Application;

LOAD * INLINE [

    LEVEL,VALID

    DETAIL, 1

    NO_DETAIL,0

];

And then in the Conditional Show:  sum(VALID)>0

I now want a message (Text Box) to pop up when the user presses the button on the front page of the document telling them something like "You do not have access to this page at this time"

Can anyone help me achieve this?

Thanks

Helen

0 Replies