Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

Does OMIT in Section Access work with hidden script?

I first created section access security with admin and user where user could not see cost because I had restricted it with an OMIT. I did the same this time with hidden script. Can any one help me why.

omit.PNG

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, OMIT

    ADMIN, ADMIN, ADMIN123

    USER, USER1, USER123, COST

];

Section Application;

this same script is working in a regular script environment. i.e. with out hidden script

12 Replies
Anonymous
Not applicable
Author

Can Someone answer??

Anonymous
Not applicable
Author

I think there is no difference between normal script and hidden script.

Instructions for using the OMIT field just say that the values in omit column don't need to be in upper case but must have the exact case of the fields names to omit.

I don't find other information... maybe you can also try to add * for ADMIN as following:

ADMIN, ADMIN, ADMIN123, *

Elena

maxgro
MVP
MVP

PFA

seems it works

user password

ADMIN ADMIN

hidden script password

hidden

Anonymous
Not applicable
Author

Hello,

I have attached qvw.just check the same.

Thanks

maxgro
MVP
MVP

add the 2 flags

password for hidden script in attachment is hidden

1.jpg

Anonymous
Not applicable
Author

Check abc BINARY

Thanks

Anonymous
Not applicable
Author

Hello,,

Check below hidden script

pwd ADMIN123

Thanks

maxgro
MVP
MVP

It works in the same way

Add the flags (to binary), reload, save, reopen with user1 and (see image) for user1  field c is missing1.jpg

Anonymous
Not applicable
Author

Hello,

Section Access;

LOAD * INLINE [

    ACCESS, USERID, PASSWORD, OMIT

    ADMIN, ADMIN, ADMIN123

    USER, USER1, USER123, c

];

Section Application;

  when u login with USER, c will b omitted but hidden script option will not be available.

And if similarly u login with ADMIN with option of omit u will get hidden script as admin takes all the access.

CHECK DIS ITS AS PER YOUR REQUIREMENT AND LEMME KNOW.

Thanks