Using Sql when an item is created filter context(v2) I am trying to filer the sql table to only trigger when a status code equals QF.
The flow fails. I can get it to work if I leave filter out, but it gives me all status. I only want to be triggered when a new item with
IC_STATUS_CODE = QF.
I tried IC_STATUS_CODE eq QF
Its interpreting QF as a field name or variable and not a value. Normally in SQL you surround constants like this with ''. Try using
IC_STATUS_CODE = 'QF'
Michael E. Gernaey
566
Super User 2025 Season 1
David_MA
516
Super User 2025 Season 1
stampcoin
492