How to declare an Internal Table?

Answer Posted / gayathri

we can declare internal table with header line and without
header line.
internal table with header line.
data: begin of itab occurs 0,
num type i,
name(23),
........,
........,
end of itab.
internal table without header line.
types: begin of itab,
num type i,
name(23),
........,
........,
end of itab.
data: itab1 type itab occurs 0.

Is This Answer Correct ?    12 Yes 6 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

Folder types in smatforms? 2)What is Command line?

1914


What are the data types of the external layer? : abap data dictionary

798


What are the main uses of the primary key?

735


Cds views

7697


Explain what is the step-by-step process to create a table in data dictionary?

641






1.If there is one receiver,then To send 10 materials at a time through BD10 tcode, How many Master Idoc create? 2.If there is one receiver,then To send 1 material at a time through BD10 tcode, how many Master Idoc generated? 3.Can I Send Multiple Messges through BD10 tcode?

1501


There is a situation where there is a field "MATERIAL DESCRIPTION" in say 20 display only transaction. You want that whenever user opens any of these transaction, this particular field is masked with ****. But table does not holds ****. It holds the actual value. What are different ways of doing it? Which is the best way.

938


Explain about the tables exists in a data dictionary and what are they? : abap data dictionary

634


Create any functions? How to go about it?

569


What is the diff between database view and maintenance view?

594


How to debug a script in abap?

593


What two statements are required in an abap program to output an icon using a written statement?

667


What are the different types of work process?

596


What should be declared explicitly in the corresponding abap/4 statements to access internal tables without header lines & why? : abap modularization

618


Explain what is the difference between primary key and unique key?

644