Hi,
during implementation of new quick report I experienced a weird problem - let me try to describe it using below example:
For simple code:
SELECT
CREATE_DATE,
PART_NO,
CONTRACT
FROM
IFSAPP.INVENTORY_PART
WHERE
REPORT_SYS.PARSE_PARAMETER(CREATE_DATE,'&[-W-BL]Created') = 'TRUE'
configuration like [-W-BL] should give me possibility to use “between” expression for this filter.
However, when I try to use it:
IFS always returns “No data found” information - of course I checked and in our database we’ve got parts created in this period.
What might be the reason of presented problem? Is there any way to fix it?