data upload state set to ignore

pramn
Tera Guru

Hi Team , 

Can someone please help me why state showing as ignore ??

just need clarification ...

pramn_0-1686124564078.png

Many thanks 

 

 

 

6 REPLIES 6

Thats Helpful , one more doubt, we have written data policy on the table ..when mandatory fields not filled up it should show completed with the error ..but now its not working as expected ..because of this reason?or could be some other possibilities 

Ratul Arora
Kilo Guru

Hi Pramn,
please check your Transform map Script with below code:

if (action == "insert") {
ignore = true;
}
if (action == "update") {
ignore = true;
}

Thanks