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 is the meaning of abap editor integrated with abap data dictionary? : abap data dictionary
when do you need to create an internal table with header line ? and with out a header line?
how to Create a smart form related to gate pass to be submitted to vendor’s location. This form outputs document number, date, vendors name, address, material details, quantity, unit,and the company logo.
Can we use transfer dataset to transfer data in internal table ?
What are the differences between primary and secondary indexes?
Why is pretty printer user in abap?
How can we create callable modules of program code within one abap/4 program?
What is buffering allowed but switched off?
Explain the Importance of pa20? : abap hr
Create any functions? How to go about it?
Difference between BDC vs Direct Loads?
What is the name of the system variable that holds the contents of the selected line in interactive reporting?
Polymorphism real time scenario
How are the date abd time field values stored in sap?
What are the advantages of logical databases : abap hr