Hi,
Can i have a conditional statement in the detail filter? For e.g the below statement is giving errors.
IF ((P_ID=?p_grp?)>0) THEN (M_i='N') ELSE (P_ID=?p_grp?)
I am getting error if i use this in the detail filter ? Is there any work arround
Thanks
Use OR logic in filters rather than conditions:
(P_ID<>?p_grp? AND M_i='N') OR (P_ID=?p_grp?)