data upload state set to ignore
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 12:58 AM
Hi Team ,
Can someone please help me why state showing as ignore ??
just need clarification ...
Many thanks
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 02:16 AM
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

- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
06-07-2023 02:20 AM
Hi Pramn,
please check your Transform map Script with below code:
if (action == "insert") {
ignore = true;
}
if (action == "update") {
ignore = true;
}
Thanks