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 difference between data elements and domains? : abap data dictionary
Explain the different types of view?
What primary key and foreign key relationship
Can we control the sequence in which multiple implementations of a multiple use BADI are called? If yes, how?
Differentiate database index and match code.
Explain the client concept of sap.
What is append search help? : sap abap data dictionary
hi,i worked mostly in core abap.know iam assigned to XI utility project.can u experts let me know what r the basic things i need to learn to work in XI utility project.i already searched in forum.thanks in advance.
Why do we use abstract class
after creating lock object if does n't access record by second user what should we do?
Does sap handle multiple currencies?
What are the components of sap scripts? : abap hr
what is the t-code to link technical and functional operation?
Difference between sy-tabix and sy-index? Where it is used? Can you check sy-subarc after perform?
What are match codes? describe?