Answer Posted / mansi
Internal table is declared by many ways:
(A)
Data : BEGIN OF IT_TAB occurs 10,
RNO(4) TYPE N,
SNAM(45) TYPE C,
END OF IT_TAB.
(B)
TYPES : BEGIN OF tT_TAB,
RNO(4) TYPE N,
SNAM(45) TYPE C,
END OF tT_TAB.
DATA : tT_TAB TYPE STANDARD TBLE OF tT_TAB with header line.
(C)
TYPES : BEGIN OF tT_TAB,
RNO(4) TYPE N,
SNAM(45) TYPE C,
END OF tT_TAB.
DATA : iT_TAB TYPE STANDARD OF tT_TAB.
(D)
DATA : BEGIN OF IT_TAB,
RNO(4) TYPE N,
SNAM(45) TYPE C,
END oF IT_TAB.
DATA : wa_TAB LIKE LINE OF IT_TAB,
wa_TAB TYPE OF IT_TAB
| Is This Answer Correct ? | 14 Yes | 3 No |
Post New Answer View All Answers
What do you understand by work area and internal tables in abap? Why do we use it?
What is the use of 'table index'?
What does the extract statement do in extract datasets?
Difference between domain and data element? What are aggregate object?
What is the disadvantage of using exec sql statement in abap?
suppose i want to print sap script output in different printers at a time what are the settings i'll have to make?
What are multiple use BADIS?
From Excel to ABAP - Is batch mode possible ?
What are the steps to execute session method?
If I want to execute a bdc program only in background not in foreground is there any option for this? : abap bdc
What is alv programming in abap? When is this grid used in abap? : abap hr
What is the use of the statement leave to list-processing?
What is occurs in internal table?
What are the ways you can do the tuning?
What are the events driven batch jobs?