Quantcast
Channel: SCN: Message List
Viewing all articles
Browse latest Browse all 8451

Re: structure is not filling

$
0
0

Below are the basic things to fetching data to internal table.

DATA:   IT_MARA TYPE STANDARD TABLE OF MARA, "internal table

            WA_MARA TYPE MARA. "structure

 

"get data to internal table

SELECT *

     FROM MARA

     INTO TABLE IT_MARA.     "will fill IT_MARA for sure if data present

 

"processing internal table

LOOP AT IT_MARA INTO WA_MARA.     "will fill WA_MARA for sure if data present

     WRITE:/ WA_MARA-MATNR.

ENDLOOP.

Hope this helps.


Viewing all articles
Browse latest Browse all 8451

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>