Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi,
i have this question, which value of region will be visible for USER C with this Section Access?
Section Access;
Load * Inline [
ACCESS, USERID, REGION
ADMIN ,DOMAIN/A, NORTH
ADMIN ,DOMAIN/A, WEST
ADMIN ,DOMAIN/B, EAST
ADMIN ,DOMAIN/C, *
ADMIN ,DOMAIN/D, *
];
Section application;
Load * Inline [
REGION
NORTH
EAST
WEST
SOUTH
];
NORTH
EAST
WEST
Why?Could you explain it to me please.
Thank you Lisa! 🙂
It's quite simple - you specified NORTH, EAST and WEST within the section access and therefore the used wildcard * will fetch them. Not specified values or NULL won't be included.
You could imagine section access as a kind of selection - in this case like (NORTH|EAST|WEST) within a listbox and therefore a non-specified value like SOUTH isn't included (the difference between a selection and section access is that the non-matching values - and their associated vales - aren't just excluded from the current calculations else they are completely erased from the datamodel).
AFAIK you could bypass this behaviour with dummy-entries like:
ADMIN ,DOMAIN/DUMMY, SOUTH
- Marcus