Multiple Single value what is l_s_range-opt =
Hello Friends if I want to pass Multiple Single values what should I put instead of "BT". Like for one single Value I put "EQ" what is that I need to put for Multiple Single value.
Please help.
l_s_range-sign ='I'.
l_s_range-opt = 'BT'.
append l_s_range to e_t_range.
endif.
Thanks
Soniya
Former Member replied
Hi
Don't know if it is possible but only possible options available are
EQ Equal: Single Value
NE Not Equal: Everything Apart from the Specified Single Value
BT Between: Range of Values
NB Not Between: Everything Outside the Range
LE Less or Equal: Everything <= Value in Field LOW
GT Greater Than: Everything > Value in Field LOW
GE Greater or Equal: Everything >= Value in Field LOW
LT Less Than: Everything < Value in Field LOW
CP Contains Pattern: Masked Input: Find Pattern
NP Not Contains Pattern: Masked Input: Reject Pattern
Thanks
Tripple k