Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
ddyt
Contributor
Contributor

Create section access

Hey,

I need to Create section access based on department name and all the employee levels.

     Example: Employee Shelli Baida needs to see two departments (RnD, HR).

anyone any suggestions? I think maybe first creating crosstable and then section access..

 

departmen_nameprimary_owneradditional_view1additional_view2additional_view3
IoTSteven KingNeena KochharDiana LorentzSarah Bell
SecurityAlexander Hunold   
ProductsDavid AustinLex De HaanNeena Kochhar 
RnDAlexander HunoldBruce ErnstShelli BaidaDiana Lorentz
SalesSteven King   
OperationDavid AustinEllen Abel  
HRSteven KingAmit BandaShelli BaidaHermann Baer
1 Reply
Or
MVP
MVP

If it's just these three, you could load them in four passes:

Load departmen_name, primary_owner as USER

JOIN

Load departmen_name, additional_view1 as USER

etc.

 

If there's a larger number of potential addtional_view, then yes, you'll need to get this into a standard table rather than a crosstable, and then use that.