Skip to main content
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

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

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