Transform Map Choice Action reject is not working

adi91221
Kilo Guru

Hi Community

I Created a Transform Map and Mapped the field and for my unique field kept choice action as reject and coalesce as true   still it is inserting new records.

Thanks

Adi

1 ACCEPTED SOLUTION

James Michaels1
Giga Expert

I'm not sure about the specific way you are doing it currently but we have in the past used an onBefore transform script with the below code. Hopefully this works for you.



if (action == 'insert') {


  ignore = true;


}


View solution in original post

2 REPLIES 2

James Michaels1
Giga Expert

I'm not sure about the specific way you are doing it currently but we have in the past used an onBefore transform script with the below code. Hopefully this works for you.



if (action == 'insert') {


  ignore = true;


}


prineshkumar
Tera Expert

Hi,


While performing the choice action the field should be the reference type or choice type.



I believe your unique filed is not choice or reference.



-prinesh