Here is what I believe that I need but I'm not for sure. More or less the question that I have is how to loop through a multiple selection parameter. Please read through the comments and see if you can make sense of what I am trying to say.
(
if {?Loctype filter} = '*' then
{RM_MAINT.LOCTYPE} like {?Loctype filter}
// Need all that fall under this criteria
and {EQUIP.ACTIVE_IN_DISP} = 'True'
and {TRAILER.ACTIVE_IN_DISP} = 'True'
and {PUNIT.ACTIVE_WHERE} = 'D'
else
{RM_MAINT.LOCTYPE} = {?Loctype filter}
//For Each parameter selection that is selected I need
//to make sure that it is still "True".
//The users can select multiple criteria. I know that I
//a loop of some kind. But I don't know how to loop
//through the selected criteria in crystal XI.
)
Thanks ahead of time!
(
if {?Loctype filter} = '*' then
{RM_MAINT.LOCTYPE} like {?Loctype filter}
// Need all that fall under this criteria
and {EQUIP.ACTIVE_IN_DISP} = 'True'
and {TRAILER.ACTIVE_IN_DISP} = 'True'
and {PUNIT.ACTIVE_WHERE} = 'D'
else
{RM_MAINT.LOCTYPE} = {?Loctype filter}
//For Each parameter selection that is selected I need
//to make sure that it is still "True".
//The users can select multiple criteria. I know that I
//a loop of some kind. But I don't know how to loop
//through the selected criteria in crystal XI.
)
Thanks ahead of time!