‎2008 Nov 05 7:39 PM
Hello everyone,
Is there someone who knows a function or a command that you can pass a range that could has every kind of register (SIGN = I, E and OPTION = 'EQ', 'BT, NE', etc...) and returns a range that has just registers with SIGN = 'I' and OPTION = 'EQ'?
Thanks in advance,
Raphael Xavier
‎2008 Nov 05 7:43 PM
If you have a range to select data from a table, the only way to get the range as all I EQ is as follows:
SELECT all data INTO itab FROM the db table WHERE data is in the range.
LOOP AT itab...
build a range entry with I EQ.
ENDLOOP
‎2008 Nov 05 7:43 PM
If you have a range to select data from a table, the only way to get the range as all I EQ is as follows:
SELECT all data INTO itab FROM the db table WHERE data is in the range.
LOOP AT itab...
build a range entry with I EQ.
ENDLOOP
‎2008 Nov 05 9:02 PM