2008 Nov 26 9:22 PM
How to find out all the material numbers which ends with VEND
000002323233VEND
232233222VEND
AAAAAAAAAAVEND
How to list all the materials which ends with VEND
Thanks in advance
2008 Nov 26 9:31 PM
se11>MARA>display>display contents>Give MATNR as *VEND>execute
How to find out all the material numbers which ends with VEND
000002323233VEND
232233222VEND
AAAAAAAAAAVEND
How to list all the materials which ends with VEND
Thanks in advance
2008 Nov 26 9:31 PM
se11>MARA>display>display contents>Give MATNR as *VEND>execute
2008 Nov 26 9:36 PM
Thanks and I would like to how it can be done in programming..
Thanks any way
2008 Nov 26 9:38 PM
select * from mara into table <internal table> where matnr like %VEND.
2008 Nov 26 9:39 PM
2008 Nov 26 9:44 PM
Thanks, I'm not a ABAP Programmer. I have an internal table (ITAB) which have all materials. I would like to DELETE certain patterns from it like VEND.
DELETE ITAB WHERE FIELD1 LIKE %VEND
How can I achieve this..... Thanks in advance
2008 Nov 26 9:56 PM
Use a SELECT OPTION or RANGE table and:
DELETE ITAB WHERE FIELD1 IN S_OPT.Rob
2008 Nov 27 6:53 AM
>
> Thanks, I'm not a ABAP Programmer. ...
Learning to press F1 on ABAP keywords to find out how they work doesn't need programming ability.
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |