2008 Apr 22 11:09 PM
Hi,
can any body tell me how to distribute respective data from data base table fields? eg MARA contains field MATNR,MBRSH(indus sector), BRGEW (gross wt).
suppose in mara- 1 to 100.
MBRSH - 10 indust sectors for 100 material no.
BRGEW - 25 differnt gross wt for 100 material no.
now i want to classify material no -
1] having same MBRSH
2] having same BRGEW.
Thanks.
Hi,
can any body tell me how to distribute respective data from data base table fields? eg MARA contains field MATNR,MBRSH(indus sector), BRGEW (gross wt).
suppose in mara- 1 to 100.
MBRSH - 10 indust sectors for 100 material no.
BRGEW - 25 differnt gross wt for 100 material no.
now i want to classify material no -
1] having same MBRSH
2] having same BRGEW.
Thanks.
2008 Apr 23 1:12 AM
2008 Apr 23 3:34 AM
Hi Rani,
Just sort the table by the 3 fields. and see the table in debug.
Regards,
Venkat.O
DATA: BEGIN OF i_mara OCCURS 0,
matnr TYPE mara-matnr,
mbrsh TYPE mara-mbrsh,
brgew TYPE mara-brgew,
END OF i_mara.
SORT i_mara BY matnr mbrsh brgew.
2008 Apr 23 4:34 AM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |