Hi Everyone, I have one requirement to create firstname and lastname with domain name all in lower case but here one condition to replace umlaut’s character from firstname and lastname as email configuration is not possible with umlaut character , I am getting null value error while using inside provisioning policy. Here is transform. Does anybody have any idea on this what’s wrong in this transform written here? I had cross check for null values but I dont find anything null within these attributes.
Hey first thing I have to use for provisioning, and I am not sure how it will interpret. Secondly requirement is not to remove such characters, we just need to append with e character at the last as i mentioned inside table
For future reference @pavya, when posting code it is helpful to place it within the code blocks and use proper indentation to make it readable for others here.
There is abutton for code block, and when formatted, it will make your code look like this:
Thanks @pavya for fixing it, it is working fine as per your modification can you guide me please what was wrong in my provided transform what I observed you have removed table JSON values for ReplaceAll transform from top and add it into bottom, Now I don’t see any errors , can you guide what wrong I was using that time as it will help me to better understand it for future, also you have removed input JSOn after replace all what makes it difference ? Can you guide
Hi @LearningStar ,
Your transform is structured incorrectly, leading to a null value. Issues in Your Transform
Misplaced “replaceAll” Type:
“replaceAll” should wrap the “concat” operation, but in your structure, “concat” is inside “replaceAll” in a way that does not properly transform the values.
Incorrect Nesting of “input” in “replaceAll”:
“input” under “replaceAll” should directly reference “concat” rather than nesting it inside another “input” field.
And while creating and modifying transform use ISC extension in VS code .
If his post worked to solve your issue, please make sure to mark it as the Solution so that others that might read it know what worked, and also so that @phil_awlings can get credit for the solution.
Currently it looks like you selected someone else’s post as a solution