Hi everyone! After upgrading to version 2025 we noticed that the Advanced settings are not working in the same way as they were in the previous versions. The query that was working just fine before is not doing its work. Does anyone else have the same experience?
If this helps, this is the query that we're using:
IF
(
/* Number of all child workflows */
SELECT
COUNT(*)
FROM WFElements
WHERE WFD_WFDID = {WFD_ID}
AND WFD_DTYPEID = {DT:494}
) = (
/* Number of positively finished subworkflows */
SELECT
COUNT(*)
FROM WFElements
WHERE WFD_WFDID = {WFD_ID}
AND WFD_DTYPEID = {DT:494}
AND WFD_StatusId = {WSTSPOSFINISHED}
)
BEGIN
SELECT {PH:2449}
END