difference between the workarea and headerline.plz tell me
the answer
Answer Posted / rakesh akula
internal table with header line contains header and body.
any record which is to inserted into the internal table
body passes to header line first then it is appended or we
can say pushed to body of internal table. The header and
body has the same name.
Suppose we have a internal table having fields NAME, AGE.
and our internal table name is ITAB.
itab-name = 'Rakesh'.
itab-age = '26'.
Append itab to itab. (" appends headerline ITAB to Body IT")
or we can use :- append itab. (both the above code works
same).
whereas in workarea it also works similarly as a header
line.
only difference is that its a headerline which is declared
explicitly and it is not attached with an internal table .
to append the work area containining a singel record into
internal table without header line :-
wa-name = 'Rakesh'.
wa-age = '26'.
Append Wa to ITAB.
I suppose this information will clear doubts .
| Is This Answer Correct ? | 25 Yes | 0 No |
Post New Answer View All Answers
What are the events driven batch jobs?
hi experts,,, what is meant by documentation? test casr preparation? documentation and preparation and Tcode for this? quality and releasing? test case scenario?
How does the interface between the dynpro and the abap/4 modules take place?
Which infotype records can not be deleted ? : abap hr
wat is the default file name of BAPI trace?
What are the Various Types of internal tables?
How is the command suppress-dialog useful?
Can you create an internal table dynamically?(at run time)
What are the different methods of passing data? : abap modularization
What are the layers of data description in r/3? : abap data dictionary
Lock objects and what are parameters of ENQUEUE FM?
What is smart forms? : abap hr
What are the different types of parameters? : abap modularization
hi i need detailed information on badi and bapi how can this work in real time senarios plz explain with exp
What is the difference between scrolling a table horizontally and vertically?