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
What is the difference between refresh and free statements?
In the abap/4 dictionary tables can be defined independent of the underlying database (t/f). : abap data dictionary
Did you create primary index?
Events that can be used in both the classical and interactive reports
What is the t-code to display batch input sessions? : abap bdc
What is a data dictionary? : sap abap data dictionary
How do I find the output type of a table or a program?
Define subtype ? : abap hr
Can i know some of the Realtime tickets that anyone has been faced ?
Can you print decimals in type n? What is difference between float and packed data type?
What is the use of table maintenance allowed?
I have 3 transactions,where the output of one transaction is input of another and output of 2nd transaction is input of 3rd transaction.i have one flat file with all data for the 3 transaction.if the 3rd transaction failed can we rollback the remaining 2 transactions or not.Is this possible in BDC,How/
What is the difference between get and get late?
How to transfer data into line items using batch input session method? : abap bdc
what is the difference between hashed & sorted internal tables?