Hello all,
I am attempting to transform the whenChanged attribute from AD into the ISO8601 format.
I mapped the transform through the Identity Profile → Mapping; while previewing, no Identity Value is being displayed, the preview (original?) value is. Example preview value: 20230523142127.0Z
example transform:
{
"name": "Date Format Transform for iSeries",
"type": "dateFormat",
"attributes": {
"inputFormat": "LDAP",
"outputFormat": "ISO8601"
},
"internal": false
}
I’ve tried different values for both inputFormat and outputFormat :
inputFormat values tried:
LDAP
yyyyMMddHHmmss.Z
EPOCH_TIME_WIN32
outputFormat values tried:
yyyy-MM-dd HH:mm:ss.S
ISO8601
Additionally, I’ve tried to add the input accountAttribute for this whenChanged attribute, but in addition to the Identity Value remaining as no value, the Preview Value is no longer displayed.
example:
{
"name": "iSeries DateFormat Transform AD whenChanged",
"type": "dateFormat",
"attributes": {
"input": {
"type": "accountAttribute",
"attributes": {
"attributeName": "whenChanged",
"sourceName": "Active Directory"
}
},
"inputFormat": "yyyyMMddHHmmss.Z",
"outputFormat": "ISO8601"
},
"internal": false
}
Any thoughts as to why the transform isn’t working? Thank you!