Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
hi,
i have a problem with the section access.
After the reload the section application doesn't apply any data restition.
Users should see a set of "Company Code" but they see all companies.
the section access works: only the users in the file can access.
the section application doesn't work: all user can see all data.
where is the error?
This is the script that i wrote:
Section Access;
Security:
LOAD NAME,
SERIAL,
Upper(NTNAME) as NTNAME,
USER.EMAIL,
Upper(ACCESS) as ACCESS,
[DATAREDUCTION<GROUP1>]
FROM [lib://MYFILE.xlsx]
(ooxml, embedded labels, table is SECURITY);
Section Application;
SECLINK_SecurityLevel:
LOAD
[DATAREDUCTION<GROUP1>],
Company_Code as TR_Company_Code
FROM [lib://MYFILE.xlsx]
(ooxml, embedded labels, table is GROUP1);
in attach section access file.
Hi, When loading data from an external source in the SECTION ACCESS statement, it is mandatory for ALL the data to be in uppercase.
Hi, When loading data from an external source in the SECTION ACCESS statement, it is mandatory for ALL the data to be in uppercase.
Thanks for the help. Works!
great!