HOW MANY WAYS TO DEFINE INTERNAL TABLES.

Answer Posted / girish m

there r so many ways to define internal table

1. data: begin of itab occurs 100,
matnr like mara-matnr,
mtart like mara-mtart,
end of itab.

2.data: begin of itab.
include mara.
data: end of itab.

3. data: begin of itab.
matnr like mara-matnr,
mtart like mara-mtart,
end of itab.
data: jtab type standard table itab,
gtab type itab.

4. data: itab like standard table of mara.
data: jtab like table itab.

5. data: itab like table of mara with header line.

Is This Answer Correct ?    24 Yes 10 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

how to see the tables of 200 in client 100?

1411


What are the function modules used in f4 help?

646


Explain the table, which contain the details of all the name of the programs and forms?

526


difference between Valuation type and valuation category?

2005


Can you assign a matchcode object to a parameter? If so how?

603






Can matchcode object contain ids with different update types? : abap data dictionary

615


Explain enhancements

877


What is evaluation path, where do we do it and why? : sap abap hr

578


How do you find out whether a file exits on the presentation server?

573


What are the parameter types for a method?

921


What are the different function modules used in sapscript?

623


What is the use of table control in bdc is it same in module pool table control? : abap bdc

678


What are the advantages and disadvantages of using views in abap programming ?

656


What are the domains and data elements?

936


when do you need to create an internal table with header line ? and with out a header line?

1493