To ensure that theFirst NameandLast Namefields are formatted in lowercase during an account export using dataflows, SAP recommends using therecord.evaluatecomponent with a custom transformation. This approach allows you to apply JavaScript functions (e.g.,toLowerCase) to transform the data as needed.
Option A: Incorrect. Thefield.renamecomponent is used to rename fields, not to modify their content.
Option B: Correct. Therecord.evaluatecomponent allows you to write custom JavaScript code to transform field values. For example, you can use thetoLowerCasefunction to format the fields in lowercase.
Option C: Incorrect. Thedatasource.read.gigya.accountcomponent is used to read account data, but it does not support applying transformations liketoLowerCasedirectly in its parameters.
Option D: Incorrect. Thefield.flattencomponent is used to flatten nested JSON structures, not to modify field values.
References:
SAP Customer Data Cloud - Dataflow Transformations
Record Evaluate Component Documentation
Contribute your Thoughts:
Chosen Answer:
This is a voting comment (?). You can switch to a simple comment. It is better to Upvote an existing comment if you don't have anything to add.
Submit