To avoid typos at the user creation, I want if it is possible to define der Property "IP Phone" by default as the last 4 digits of the property "Telephone Number" ?
Thanks
Hello Boris,
First of all, you need to remove the IP Phone property from Web interface forms. For details, see https://www.adaxes.com/tutorials_WebInterfaceCustomization_CustomizeFormsForUserCreationAndEditing.htm.
As for updating the property, it can be done using a business rule triggering After creating/updating a user and the below PowerShell script. In the script:
$propertyToSet = "ipPhone" # TODO: modify me $sourcePropertyName = "description" # TODO: modify me $numbreOfLastCharacters = 4 # TODO: modify me # Get last cahracters try { $sourcePropertyValue = $Context.TargetObject.Get($sourcePropertyName) } catch { $Context.LogMessage("Property $sourcePropertyName is not specified.", "Warning") return } $charactersToSet = $sourcePropertyValue.SubString($sourcePropertyValue.Length - $numbreOfLastCharacters) # Update the user $Context.TargetObject.Put($propertyToSet, $charactersToSet) $Context.TargetObject.SetInfo()
The checkbox is not selected (False) by default.
The report criteria would be as follows, Name/Last Logon Date of any user that was disabled in the last 30 days. Furthermore, if possible, how would I publish this to the user ... run a report and/or choose which dates to run the report, on his own? TIA
If the user name submitted is "jhon doe" all of the users properties will be lower case. We want it to force it to be "Jhon Doe" even if it was submitted in lower case.
Dear Support Admin Hi, I hope you are in good health. I have a problem regarding the office 365 license my problem is: I have a case where if HR adds a new AD user, ... Is that possible to do? for example using a script or display it in another form? Thank you
I was able to get this to work using the information provided. Thank you. I have an additional question. After generating the sequential property values for the employeeNumber, is there a way to verify/check the last number used in Adaxes?