Data prep mapping for missing SKU not working as expected.
Hi all,
I've run into issues with mapping inside the data prep tool, specifically within productListItems. The solution would need to be able to iterate through an array.
Currently running into an issue where productListItems.SKU is missing. My team has been unable to reproduce the issue but have decided that temporarily putting in a fake SKU while resolving the issue would allow datasets to continue to be ingested while giving us the ability to search for the errors.
In Data Prep, we have used the following calculated field but to not success.
- iif(is_empty(productListItems.SKU) == true, "MISS_SKU", productListItems.SKU)
- iif(is_empty(SKU) == true, "MISS_SKU", SKU)
The target field is productListItems[*].SKU.
Any help would be appreciated!