Hi All,
I have two attribute,
isStaffType : if user is part of either source A or source B, return “Y” else return “N”
isStudentType: if user is part of source C, return “Y” else return “N”
when I add select the transform , I select source A in case of isStudentType even under source A identity Profile but it is not working.
Same this happens when I select source as Source A for isStaffType attribute, this doesn’t work when user has only source C.
"name": " Select isStudentType",
"type": "static",
"attributes": {
"isStudentType": {
"attributes": {
"values": [
{
"attributes": {
"attributeName": "ABC",
"sourceName": "source C"
},
"type": "accountAttribute"
},
{
"attributes": {
"value": ""
},
"type": "static"
}
]
},
"type": "firstValid"
},
"value": "#if($isStudentType=='')N#{else}Y#end"
},
"internal": false
}
=========
{
“name”: " Select isStaffType",
“type”: “static”,
“attributes”: {
“isStaffType”: {
“attributes”: {
“values”: [
{
“attributes”: {
“attributeName”: “attrbutename”,
“sourceName”: “Source A”
},
“type”: “accountAttribute”
},
{
“attributes”: {
“attributeName”: “attrbutename”,
“sourceName”: “source B”
},
“type”: “accountAttribute”
},
{
“attributes”: {
“value”: “”
},
“type”: “static”
}
]
},
“type”: “firstValid”
},
“value”: “#if($isStaffType==‘’)N#{else}Y#end”
},
“internal”: false
}