-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
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
DLAU doesn't handle multiple CCX Directories... #60
Comments
FmLaunch: Tab 2 Button Click saving list... |
Is there any update on when this issue will be fixed as it makes running DLAU in a number of environments quite time consuming (you have to run DLAU once - selecting one External CCX directory each time - then try to build a new DLAU database by combining the different results). We emailed a fix for this along with other items to HCL a while back so really hope a fix will arrive soon. Thanks. |
This is being planned for either V1.2.7 or V1.2.8. Please be aware that, although DLAU only allows for a single additional Domino Directory to be selected, you can also select the Orgs/OrgUnits that represent the other external users for CCX calculations. The list of Orgs/OrgUnits that are presented is a complete list from all Domino Directories. It is suggested that the additional Domino Directory selected is the instance that has the largest quantity of Person documents in it, and then also select the Orgs/OrgUnits that represent the other external users. These two options can be used in conjunction to locate the entire list of external users. |
Thanks for the suggestion - will keep it in mind. Unfortunately there are environments with external users without an Org/Org Unit (i.e. flat common name only). So using the Orgs/Org Units selection isn't an option. If an option could be added to the Orgs/Org Unit list that covers flat common name only - that might also be useful :-) |
Allowing for "Flat Names" is currently being worked on for DLAU V1.2.7 |
Brilliant - Thanks for the update. :-) |
Probable solution :-)
dlgExternalQA
DAListExternal Allow Multiples
slCore:GetPersonDocuments
' if an external directory was chosen to identify CCX users, check to see if the current directory is the one that was chosen
If GetAdminValue("DAListExternal")(0)<>"" Then
tmpVal=GetAdminValue("DAListExternal")
ForAll strNabs In tmpVal
spitVar = Split(strNabs,"!!")
externalNABName=Left(spitVar(1),Len(spitVar(1))-1)
If LCase(processNAB.Filename)=LCase(externalNABName) Then externalNAB=t
End ForAll
End If
The text was updated successfully, but these errors were encountered: