Transform is getting remove from Create Profile automcatlly

For the last 3 months, I have been using the below samaccountname generation in the create profile, and it working fine. After creat profile move to Edit configuration. It removes the entire transform, and It will keep #if($sAMAccountName.equals('NONE'))$ruleName#else$sAMAccountName#end in create profile and daily I need to go manually add them

Any idea why it is getting removed from create profile

{
	"name": "sAMAccountName",
	"transform": {
		"attributes": {
			"sAMAccountName": {
				"attributes": {
					"values": [
						{
							"attributes": {
								"name": "samaccountname"
							},
							"type": "identityAttribute"
						},
						{
							"attributes": {
								"value": "NONE"
							},
							"type": "static"
						}
					]
				},
				"type": "firstValid"
			},
			"ruleName": {
				"attributes": {
					"name": "App Generate SAMAccountName"
				},
				"type": "rule"
			},
			"value": "#if($sAMAccountName.equals('NONE'))$ruleName#else$sAMAccountName#end"
		},
		"type": "static"
	},
	"attributes": {},
	"isRequired": false,
	"type": "string",
	"isMultiValued": false
}

Thanks,
Prasantha

Hi @pkumar22 ,

This is observed for static type of transforms. We do see the same representation in create provisioning policies. It is just the representation, but the actual transform works fine.

Do you see any issues with the transform and implementation? Ideally it shouldn’t cause any.

Regards,
Uday Kilambi

"Yes, I know this is a static type of transform, and I see this in create profile also. But my issue is when I go and see in Visual Studio, it wipes out the entire transform, and it only shows “value”: “#if($sAMAccountName.equals(‘NONE’))$ruleName#else$sAMAccountName#end”
then, I need to copy and paste the remaining part.

@pkumar22

If I understand correctly, this is what happens when you edit the create profile in the UI. It removes the variables that exist in the transform block.

This has always happened for me as well, and while I never raised it with SailPoint, I would suggest doing so, as an enhancement or bug fix should be raised by them internally to manage this.

1 Like

Hi @pkumar22 ,

This is raised in bugs group to ISC.

Thanks!

1 Like

Thanks for the explanation. I lost two transforms on Friday also. Took me ages to debug what was wrong.

This topic was automatically closed 60 days after the last reply. New replies are no longer allowed.