I am running into a problem =- where my select expert changes based on which part of the query I bring to the top. I do have several dynamic parms which bring back fairly large list of items to select from (3 pages). Then I base the query off what the user selects in those and other parms.
Here is they query
if {?Client}<>"*ALLCLIENTS" then {Client.DISPLAY_NAME}={?Client} else true and
if {?Location}<>"*ALLLOCATIONS" then {Location.DISPLAY_NAME}={?Location} else true and
if {?Impact Type}<>"*ALLIMPACTS" then {CVGCPLIMPACTM1.TYPE} = {?Impact Type} else true and
if {?Ticket Type}="Change" then {CVGCPLIMPACTM1.NUMBER} startswith "C"
else if {?Ticket Type}="Incident" then {CVGCPLIMPACTM1.NUMBER} startswith "IM"
else if {?Ticket Type}="Problem" then {CVGCPLIMPACTM1.NUMBER} startswith "PM"
else true and
if {?Program}<>"*ALLPROGRAMSS" then {Program.DISPLAY_NAME}={?Program} else true and
date({@relevant_date}) in {?DateRange} and
not {@nulldatecheck}
So - as it stands the "date" part doesnt work - but when I move that to the top - then it works (and something under it doesnt filter). Anyone ever have strange results like this? Anyone found a solution.
Thanks in Advance - this one has me very stumped.