Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
I have the below section access script. I want USER1 unable to see Cost. How can I achieve it by using OMIT.
Section Access;
LOAD * INLINE [
ACCESS, USERID, PASSWORD, OMIT
ADMIN, ADMIN, ADMIN123
USER, USER1, USER123, COST
];
Section Application;
LOAD * INLINE [
Cost, COST
];
excel sheet is also attached.
many Thanks
You need to rename the Cost field to COST, or load the field twice from excel as Cost & COST.
The field names must be uppercase for section access.
I do not believe your one line inline load does anything, it just creates an empty table.
Hi John
Maybe -
Check the selected option “Settings” -> “Document Properties” -> “Opening” ->Strict Exclusion is checked?
try this or put and upper function in the COST field
good luck
Fernando
Did you set "Initial Datareduction ...."?
Peter
HI all, I have checked both "Initial data Reduction" and "Strict exclusion" Still, Cost field is showing for user1. Fernando, what do you mean by put upper function in cost field? Excel sheet has "Cost" and I have "COST" under OMIT in section access. Then in section application, I have "mapped" "COST" to "Cost" i am hoping this is the correct way. If you see any thing can you please advise..?
You need to rename the Cost field to COST, or load the field twice from excel as Cost & COST.
The field names must be uppercase for section access.
I do not believe your one line inline load does anything, it just creates an empty table.
Thanks Colin, that worked.