The document defines data types and tables to store material master data from the MARA table. It then selects all fields from MARA and stores them in the internal table LT_MARA. Each record is then written to output.
The document defines data types and tables to store material master data from the MARA table. It then selects all fields from MARA and stores them in the internal table LT_MARA. Each record is then written to output.
The document defines data types and tables to store material master data from the MARA table. It then selects all fields from MARA and stores them in the internal table LT_MARA. Each record is then written to output.
The document defines data types and tables to store material master data from the MARA table. It then selects all fields from MARA and stores them in the internal table LT_MARA. Each record is then written to output.
MATNR TYPE MATNR, MBRSH TYPE MBRSH, MTART TYPE MTART, END OF T_MARA. TYPES : TT_MARA TYPE STANDARD TABLE OF T_MARA. DATA : LW_MARA TYPE T_MARA, LT_MARA TYPE TT_MARA.
*-- Fetch data
SELECT MATNR MBRSH MTART FROM MARA INTO TABLE LT_MARA.