Hi,
We are deploying provisioning policy from Sandbox to Production for Windows Local Connector, Policy works as expected in Sandbox but not in Production and we are unable to create account in Production.
We have below provisioning policy in Connector.
{
"name": "Account",
"description": null,
"usageType": "CREATE",
"fields": [
{
"name": "sAMAccountName",
"transform": {
"type": "rule",
"attributes": {
"name": "Create Unique Account ID"
}
},
"attributes": {
"template": "$(hostName)\\$(uid)",
"cloudMaxUniqueChecks": "50",
"cloudRequired": "true"
},
"isRequired": false,
"type": "string",
"isMultiValued": false
}..
..
..... other attributes
]
}
In Sandbox, $(hostName) gets replaced with hostname of the server say, SABIAM01 and we get below value
SABIAM01\ashish
but same doesn’t works in production, and we only get
\ashish
we have Disable Qualifying Local Objects as unchecked.