At this moment my scriptcase is completely up to date with the latest update 7.01.0014 including that last update of 2 files.
I had this statement for oracle in my SQL in the form:
SELECT
s.STEPID as STEPID,
s.CASE_ID,
c.MUTFORM_NR,
c.forminfo,
s.CASE_FLOWSTEP,
s.STARTDATE,
s.REMARKS,
s.EMPLID_CTRL,
s.STATUS,
s.CASE_FLOWSTEP_SEQ,
s.RESULT,
s.RESULTDATE,
s.RESULTREMARKS,
s.EMPLID_ADMIN,
s.EMPLID_CLAIM,
s.SC_APPID,
s.DEADLINE,
s.ROLE_CTRL,
s.EXT_CONN_STR,
s.EXT_EMAIL,
s.RUG_EMPLID_DELEGATE,
'Afhandelen' as SHOWSCREEN,
'' as WORKFLOW
FROM
SCRIPTCASE.MUTF_CASESTEP s,
SCRIPTCASE.MUTF_CASE c
WHERE
s.CASE_ID = c.CASE_ID AND
s.STATUS='OPEN' and
s.EMPLID_ADMIN <> '0' and
s.EMPLID_ADMIN like ['glob_werklijst']
UNION
SELECT
s.STEPID as STEPID,
s.CASE_ID as CASE_ID,
c.MUTFORM_NR,
c.forminfo,
s.CASE_FLOWSTEP,
s.STARTDATE,
s.REMARKS,
s.EMPLID_CTRL,
s.STATUS,
s.CASE_FLOWSTEP_SEQ,
s.RESULT,
s.RESULTDATE,
s.RESULTREMARKS,
s.EMPLID_ADMIN,
s.EMPLID_CLAIM,
s.SC_APPID,
s.DEADLINE,
s.ROLE_CTRL,
s.EXT_CONN_STR,
s.EXT_EMAIL,
s.RUG_EMPLID_DELEGATE,
'' as SHOWSCREEN,
'Workflow' as WORKFLOW
FROM
SCRIPTCASE.MUTF_CASESTEP s,
SCRIPTCASE.MUTF_CASE c
WHERE
s.CASE_ID = c.CASE_ID and
s.STATUS='OPEN' and
s.EMPLID_CTRL = '0' and
s.EMPLID_ADMIN = '0' and
s.ROLE_CTRL = 'AM' and
s.EMPLID_CLAIM like ['glob_werklijst']
This worked before that last update of scriptcase of the 2 files. Now it doesnt anymore…
Meaning if I use a union then scriptcase can not find the columns anymore. Then only way to resolve that is the following workaround:
SELECT
s.STEPID as STEPID,
s.CASE_ID,
c.MUTFORM_NR,
c.forminfo,
s.CASE_FLOWSTEP,
s.STARTDATE,
s.REMARKS,
s.EMPLID_CTRL,
s.STATUS,
s.CASE_FLOWSTEP_SEQ,
s.RESULT,
s.RESULTDATE,
s.RESULTREMARKS,
s.EMPLID_ADMIN,
s.EMPLID_CLAIM,
s.SC_APPID,
s.DEADLINE,
s.ROLE_CTRL,
s.EXT_CONN_STR,
s.EXT_EMAIL,
s.RUG_EMPLID_DELEGATE,
CASE WHEN
s.EMPLID_ADMIN <> '0' and
s.EMPLID_ADMIN like '%'
THEN
'Afhandelen'
ELSE
''
END as SHOWSCREEN,
CASE WHEN
s.EMPLID_CTRL = '0' and
s.EMPLID_ADMIN = '0' and
s.ROLE_CTRL = 'AM' and
s.EMPLID_CLAIM like '%'
THEN
'Workflow'
ELSE
''
END as WORKFLOW
FROM
SCRIPTCASE.MUTF_CASESTEP s,
SCRIPTCASE.MUTF_CASE c
WHERE
s.CASE_ID = c.CASE_ID AND
s.STATUS='OPEN'
Bug fixes are supposed to make things better not worse!! Please check your fixes better.
I have said this before, put a test team to work and make test scenarios and test it before you release an update…