Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hello,
I'm trying to implement section access, all the guides I see online seem to be overly complicated.
The use case is quite simple. I have the below table between salesman and client.
How can I set this up? Thanks a lot
salesman | client |
Tom | Client1 |
Tom | Client2 |
Tom | Client3 |
Bob | Client4 |
Bob | Client5 |
Ross | Client6 |
@johnnyjohn Try below.
Section Access;
LOAD * INLINE[
ACCESS, USERID,KEY
USER,FLETCH,TOM,
USER,STALL,BOB,
USER,GARRIS,*
];
Section Application;
In your fact use UPPER(Salesman) as KEY
Dont think this is right - should be LOAD * INLINE and USERID
Still doesnt work though
@johnnyjohn Can you share your script you have used.