when do you need to create an internal table with header
line ?and with out a header line?
Answers were Sorted based on User's Feedback
Answer / siddharth samal
IF YOU CREATE WITH HEADER LINE THEN YOU NEED NOT HAVE TO
CREATE A WORK AREA EXPLICTLY.
IF YOU WANT TO CREATE A WORK AREA THEN TWITH HEADER LINE IS
NOT AT ALL REQUIRED.
CHOICE IS YOURS.
Is This Answer Correct ? | 15 Yes | 4 No |
Answer / mahender
in this question we can proceed like this.
with header line.
data:itab like lfa1 occurs o with header line.
itab:internal table body.
with out header line:
data:begin of fs,
field1 like lfa1-field1,
end of fs.
these are syntaxes for both...but if u want to extract all
the fields from predefined table or exhisting table.. very
complex to write all field names in internal table
declaration.so that time use with header line syntax.
fields are very few..go for with out header
line..performance wise with out header line is better.
Is This Answer Correct ? | 7 Yes | 6 No |
Explain the difference between a dialog program and a report?
what is synchronous and asynchronous updates in BDC's, whats their difference ?
What is hotspot?
What are pool tables?
In Between events you can use loop Say Yes or No?
what is RFC STUB program?
can anybody give me functional specification (or table name & field names) of stock analysis report, work in progress report,generating vendor detailed list
How many types of views are there? : abap data dictionary
Why is bdc _cursor and GET_Cursor used?
how we insert record in to data base table ? how many ways are there what are there?
What are field groups?
Difference bet'n simple and interactive reports?