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
How to use messages in lists?
What are the page headers for secondary lists?
What are critical issues you have faced in your project
In select-options, how to get the default values as current month first date and last date by default?
What is For-period and In-period
What are the time related infotypes? : abap hr
What is the use of a pretty printer?
How to debug a sapscript?
What is a data class? : abap data dictionary
How many types of tables exists and what are they in data dictionary?
Explain about sap fico testing and the tools used? : abap bdc
What is a maintenance view? : abap data dictionary
List the events in abap/4 language?
Explain what is the significance of hide?
What are the screen painter and menu painter?