Hi,
Oddball issue:
I've got a workflow that works flawlessly with a indb filter with either a static value (ie, dt_create = '2022-07-01') or with a calculated value.
I'm trying to put a UI over one of the workflows to allow a run time user to select a specific date they want to run the workflow for.
Therefore, I've:
1) Inserted the date picker
2) Inserted the action tool
3) Configured the action tool to replace specific string 2022-07-01, where as the previous contents of the filter tool would have been "dt_create" = '2022-07-01' AND "some_field" = 'some_value'
But, when I run this as is return no values, unexpected. My immediate suspicion it had to do with the quotes in the filter tool, so I even tried instead replace specific string '2022-07-01' and that returns some errors like "
- Error SQLPrepare: [SAP AG][LIBODBCHDB DLL][HDBODBC] General error;266 inconsistent datatype: INT type is not comparable with DATE type.: line 1 col 103 (at pos 102) (Tool Id: 17)"
I'm about 99% certain whatever I'm doing wrong here is pretty obvious but I'm not sure what I should try next. Does anybody have a guess?