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

What is a database view? : abap data dictionary

635


Did you create secondary index?

681


Explain what is an rfc?

603


What are the data types of the abap/4 layer? : abap data dictionary

649


any one can tell me which is the tables can store in ddic plese dont say db02l,please give me different ways of resideing the tables ?

1965






What is PS structure

1622


On which even we can validate the input fields in module progams?

570


Have you worked with support? How ticket comes to you? What were the timings for resolving tickets types of severity?

1601


Explain the client concept of sap.

573


What are the dis-advantages of logical databases? : abap hr

594


What are pooled tables? : abap data dictionary

645


List the events in abap/4 language?

576


Give an example of interface from your project explaining why you used it?

878


What are the page windows?

540


What are data classes? What are the various data classes available for selection? : abap data dictionary

540