can we insert two records in internal table?
if yes give code.
Answer Posted / malathy
Ofcourse we can insert two receods to an internal table.
Here is a sample code.
*Internal table declaration.
Data: ftab like scarr occurs 0.
Data: begin of itab,
carrid like scarr-carrid,
carrname like scarr-carrname,
currcode like scarr-currcode,
end if itab.
itab-carrid = BB.
itab-carrname = British airways.
itab-currcode = HBC.
Append itab to ftab.
clear itab.
itab-carrid = AA.
itab-carrname = American airlines.
itab-currcode = JFC.
Append itab to ftab.
clear itab.
by using append we can insert multiple records to an
internal table.
| Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What is sap script? Describe its components.
What are local objects? : abap data dictionary
Explain the difference between tables and structures?
What is static attribute
What is time constraint ? : abap hr
Explain how to write a bdc - how do you go about it?
What is difference between float and packed data type?
Differentiate between the uline and write: sy-uline statements if any?
what is the difference between Blocked ALV and interactive ALV?
What is dynamic action? : sap abap hr
What happens Update command is used without where clause ?
What is the use of table control in bdc is it same in module pool table control? : abap bdc
How do you populate data into a multiple line field? : abap bdc
What is a data dictionary? : abap data dictionary
How do we handle multiple line items in BDC's.