Unlock a world of possibilities! Login now and discover the exclusive benefits awaiting you.
Hi All,
I have created the section access with the below script.
AuthBridge: Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID, Load Upper(BusinessUnit) & Upper(Team_Level_1) & Upper(RegionDesc) & Upper(AMHQCode) & Upper(SAP_TerritoryDesc) as AuthID,
|
Some sales have been moved manually in the backend script to Supra region for Q3. The security file is linking by AUTHORISATIONKEY with this AuthBridge table.
The section access is functioning correctly according to our security file, but it doesn't operate as expected with time periods when manual backend changes are made.
When selecting Jun, the section access is working fine whereas in July supra data also visible.
Please help on this.
Thanks in advance.
Hi @dineshm030,
I don't think this will solve your problem (maybe!), but it is a common and good practice to add a separator when combining strings. Please consider doing the following, it can save you a lot of headaches:
Load
Upper(BusinessUnit) & '|' & Upper(Team_Level_1) & '|' & Upper(RegionDesc) & '|' & Upper(AMHQCode) & '|' & Upper(SAP_TerritoryDesc) as AuthID,
Upper(BusinessUnit) & '|' & Upper(Team_Level_1) & '|' & Upper(RegionDesc) & '|' & Upper(AMHQCode) & '|' & Upper(SAP_TerritoryDesc) as %AuthID
Resident Fact_Sales;
This will avoid any unwanted and unaware combination that sometimes can be really hard to catch.
Regards,
Mark Costa