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 bdc_okcode and bdc_cursor? : abap bdc
could anyone tell me what r real time questions been asked in interviews?i am in urgent need..thanks in advance
How would you set the formatting options statically and dynamically within a report?
What is a variable in the sap abap?
What is a multiple line field?
What are the modes in lock objects? : sap abap data dictionary
What is view? Different types of view.
What is lock objects? : sap abap data dictionary
What does an exec sql statement do in abap?
What is the use of dequeue function module? : sap abap data dictionary
Why do we need enhancements?
What are the advantages of abap query tool?
We have got some values for Field F1 say 1,2,3,4 and F2 say 10,10,10,10.Now can you tell me what would be the output for F1 if we use At End Of event?and what would be the output for F2 if we use At Last event?Also i want to know what is the difference between Total calculation for At end event and grand total for At last event???
Can we include customizing include or an append structure with pooled or cluster tables?
What is logical database? : abap hr