Hi,
I have the following text in my record selection but it is excluding all other BEGQUEUECD cases that don't fulfil these criteria. How can I ensure that it includes those that don't have BEGQUEUECDs as below ?
Thanks - Alec
(
if {W20U999S.BEGQUEUECD}="EFFDATE" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","AUTH","BAT"]
)
else if {W20U999S.BEGQUEUECD}="GEN" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","EFFDATE","AUTH","SUW","IUW","BAT"]
)
else if {W20U999S.BEGQUEUECD}="POSTPOL" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","AUTH","EFFDATE"]
)
)
I have the following text in my record selection but it is excluding all other BEGQUEUECD cases that don't fulfil these criteria. How can I ensure that it includes those that don't have BEGQUEUECDs as below ?
Thanks - Alec
(
if {W20U999S.BEGQUEUECD}="EFFDATE" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","AUTH","BAT"]
)
else if {W20U999S.BEGQUEUECD}="GEN" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","EFFDATE","AUTH","SUW","IUW","BAT"]
)
else if {W20U999S.BEGQUEUECD}="POSTPOL" then
(
{W20U999S.ENDQUEUECD} in ["END","NEXTDAY","AUTH","EFFDATE"]
)
)