Do not input private or sensitive data. View Qlik Privacy & Cookie Policy.
Skip to main content

Announcements
Join us to spark ideas for how to put the latest capabilities into action. Register here!
cancel
Showing results for 
Search instead for 
Did you mean: 
Not applicable

Section Access : OMIT field

Hi evrybody,

I tried in a section access to OMIT a special field (Emp.salary which  is loaded before). But when i'm doing it I don't have the access control anymore.

Any clue will be appreciated.

Acces:

LOAD distinct

     NIVEAU            as ACCESS,

     LOGIN            as USERID,

     PWD            as PASSWORD,

     Emp.Salary        as OMIT,        // WHY THIS MAKE DISAPPEAR THE ACCESS CONTROL  : LOGIN/PASSWORD ??

     LVL            as OBJ,

     MAG            as DEPT

FROM Data\secu.xls

(biff, embedded labels, table is [Sheet1$])

best regards

chris

1 Solution

Accepted Solutions
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Emp.Salary as OMIT, <- This will use the field values in the field Emp.Salary as fields to omit. What you probably want is to use the literal value: 'Emp.Salary' as OMIT.


talk is cheap, supply exceeds demand

View solution in original post

2 Replies
Gysbert_Wassenaar
Partner - Champion III
Partner - Champion III

Emp.Salary as OMIT, <- This will use the field values in the field Emp.Salary as fields to omit. What you probably want is to use the literal value: 'Emp.Salary' as OMIT.


talk is cheap, supply exceeds demand
Not applicable
Author

Hi Gysbert,

you're successfully right

thank you

chris