2010 May 24 11:26 AM
Dear all,
How can we delete the internal table value by refer the standard Option value, in standard option we have " SIGN OPTION LOW HIGH" value, so can i use this value to delete unrelated value from internal table ? the idea is like this :
SELECT-OPTIONS: xbukrs FOR ekko-bukrs.
delete from [internal table] where bukes in xbukrs(standard option).
Can we do this way ?
Thanks...
Moderator message - Rather than ask here, please try this yourself - post locked
Edited by: Rob Burbank on May 24, 2010 11:57 AM
Dear all,
How can we delete the internal table value by refer the standard Option value, in standard option we have " SIGN OPTION LOW HIGH" value, so can i use this value to delete unrelated value from internal table ? the idea is like this :
SELECT-OPTIONS: xbukrs FOR ekko-bukrs.
delete from [internal table] where bukes in xbukrs(standard option).
Can we do this way ?
Thanks...
Moderator message - Rather than ask here, please try this yourself - post locked
Edited by: Rob Burbank on May 24, 2010 11:57 AM
2010 May 24 11:49 AM
2010 May 24 12:04 PM
You can do like this :-
SELECT-OPTIONS: xbukrs FOR ekko-bukrs.
This will not worl
delete internal table where bukes in xbukrs-low or
delete internal table where bukes in xbukrs-high.
This will work..
delete internal table where bukes in xbukrs
delete internal table where bukes not in xbukrs
and if u are deleting from internal table user Delete <ITAN> istead of delete from <ITAB>
Edited by: Ankesh Jindal on May 24, 2010 1:05 PM
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |