Identity attribute changed filter

Hi Team,

I need a filter in workflow for identity attr changed where if any of the given attr changes it should trigger:
$.changes[?(@.attribute in [“preferredFirstName”, “lastname”, “email”, “sapeccCurrency”, “sapEkorg”, “sapeccBukrs”, “sapeccKostl”, “sapeccFgplant”, “sapeccApprovallimit”, “fgLanguage”, “sapEccManager”])]

I wrote this.
Is the syntax correct?

After in you have to use ( as per this doc

Instead of doing this you can do this way

$.changes[?(@.attribute == "preferredFirstName" || @.attribute=="lastname")]

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