A change has been made to NHD_Roleclaims and NHD_Userclaims where the asset claims have values upto 3 rather than 2.
This means when rolling back any claims relating to assets that have value of 3 in either of these tables need to be dropped down to 2.
Run the following 2 queries:
Update NHD_roleclaims
set ClaimValue = '2'
where ClaimValue = '3' and ClaimType = 'Dx'
Update NHD_Userclaims
set ClaimValue = '2'
where ClaimValue = '3' and ClaimType = 'Dx'
Then highlight to the client that all agents will need to logout and back in again to refresh their permissions else they will not be able to access any assets if they had a value of 3 previously.