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
Where do you use help views?
What is the syntax of packed number?
Can a constructor be redefined?
How to determine the attributes of an internal table?
How to split one Invoice into Multiple ( Step by Step)?
What are the functional modules used in sequence in bdc? : abap hr
From excel to abap - is batch mode possible ? : abap bdc
How to define selection screen?
what is diff between idocs,bdc,rfc and bapi. give real time answer
What is amdp (abap managed data procedures)?
What does the insert statement in extract datasets do? : abap modularization
Can I execute user exits? If yes, how?
What two statements are required in an abap program to output an icon using a written statement?
What is a persistent class?
How to create user interfaces for lists?