Hi everyone,
maybe we can gather all the changes anyone encounters when testing the new version in a single thread. It won't take much of your time and will potentially save you more when others do the same.
I will start with this one:
SQL command: Varriable WFCONCOL_ID :
WFD_DTYPEID = {DT:12} and {WFCONCOL_ID:153} = {WFD_ID}
has been "translated" to
WFD_DTYPEID = 1 and dbo.ClearWFElemId(WFD_AttChoose1) = 2
and is now replaced by the Calculated field
WFD_DTYPEID = 1 and WFD_AttChoose1_ID = 2
This will fail now because I didn't put the WFD_ID into single quotes '' and the new field may contain text which can not be converted to integer. It seems that the dbo.ClearWFElemId(WFD_AttChoose1) = 2 was applied after getting all elements of the form type 1 while the condition with the calculated field is applied simultaneously.
Ok, wouldn't fail if I hadn't been so lazy, but I doubt that I'm the only one. :)
Best regards,
Daniel