We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
External (CCX) Users Who Are Not Listed in Entitlement Tracking Are Being Recognized as CCB Users is still a problem. If you select your external users based on Organization instead of directory they are still being flagged as CCB instead of CCX if they are not listed or haven't been calculated in the entitlements database.
In the ProcessEntitlements function of the slCore script library. The If statement starting on line 229
If isReader And externalNAB Then userNote.KnownGuest = "true" 'DNEXT-23857 End If
Should be changed to
If isReader And (externalNAB Or userNote.externalOrg(0) = "true") Then userNote.KnownGuest = "true" 'DNEXT-23857 End If
and the If statement starting on line 233
If externalNAB Then userNote.KnownGuest = "true" 'DNEXT-23857 End If
should be changed to
If externalNAB Or userNote.externalOrg(0) = "true" Then userNote.KnownGuest = "true" 'DNEXT-23857 End If
The text was updated successfully, but these errors were encountered:
Fixed for DLAU V1.2.5
Sorry, something went wrong.
notesboy
No branches or pull requests
External (CCX) Users Who Are Not Listed in Entitlement Tracking Are Being Recognized as CCB Users is still a problem. If you select your external users based on Organization instead of directory they are still being flagged as CCB instead of CCX if they are not listed or haven't been calculated in the entitlements database.
In the ProcessEntitlements function of the slCore script library.
The If statement starting on line 229
Should be changed to
and the If statement starting on line 233
should be changed to
The text was updated successfully, but these errors were encountered: