11/20/2023 07:04 PM
Hello Team,
I was trying to disregard a pending approval on Hanarule with an enhanced query job.
here's what I put in the job.
SELECT '0' AS HANARULE__SENTFORAPPROVAL, h.hanarulekey as HANARULE__PRIMARYKEY from HANARULE h where h.hanarulekey=418; |
and What I got is
Error while updating table: HANARULE : Data truncation: Data too long for column 'SENTFORAPPROVAL' at row 1 |
I have checked the data type in the column but I can't find what I did wrong with this.
Could you guys give me any comments one this ?
11/20/2023 07:19 PM
SELECT 0 AS HANARULE__SENTFORAPPROVAL, h.hanarulekey as HANARULE__PRIMARYKEY from HANARULE h where h.hanarulekey=418; |
11/20/2023 07:26 PM
Hello @rushikeshvartak ,
Yes I also tried that, but it's same..
11/20/2023 07:31 PM
Its better you reject request from UI to avoid request remain open in dependent workflow tables
11/21/2023 02:19 AM
Got it. Thanks Rushikesh