Bot failing due to Error: Value in Field cannot be converted to Type Enum

My Bot is repeatedly failing to fire a simple Action. When the value of an Enum column is updated to “COMPLETE”, the Bot should fire an Action to add a row to another table using values from the edited row. The Bot seems to be failing based on the value of a different Enum column. On the Automation Monitoring page, the Error I’m seeing is: "Error encountered in step with name [SEND TO PAYROLL]: Error: Value ‘NEW’ in field ‘INVENTORY TYPE’ cannot be converted to type ‘Enum’.:

I have experienced this type of error before with other Apps I’ve made and was able to fix by enabling “Allow other values” for the affected column, but even with that box checked, the same error is still occurring. I have also tried using a Valid_If expression to allow specified values, but that did not change the issue either. Oddly, the Bot only fails when the value of [INVENTORY TYPE] is set to “NEW”. I have tested multiple times with a dummy row and the Bot works as intended when the Enum value is set to “USED”. Any suggestions as to why the Action fails with “NEW” as the Enum value, but works fine when the value is set to “USED”?

1 Like

Your Action is adding a new row to the “DETAIL PAYROLL LOG” Table, but you’re looking at the Enum column on the “CAR LOG” Table. You’re looking at the wrong Enum column.

2 Likes

You’re absolutely right, Marc. What an embarrassing oversight on my part. :expressionless_face:

Thank you so much for your time!

2 Likes