Skip to main content

How to use Duplicate rule in Mapping

Comments

1 comment

  • David Paras

    Want to update a column in case of duplicate records. Or filter out both records?

    Use below For each condition:

    /Root/Record [(preceding:: Material = Material) or (following:: Material = Material)]

    What if I need to filter both the duplicates?

    for Filtering both the duplicates(preceding and following) you need to apply both the Axis Functions "preceding" as well as "following" in ForEach.

    Apply the below ForEach condition to filter both the duplicates:

    "$Input_Source_Schema/Root/Record[not(preceding::Source_Column1 = Source_Column1) and not(following::Source_Column1 = Source_Column1) ]"

    0

Article is closed for comments.