can we insert two records in internal table?
if yes give code.
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / tanya 9thbath
firstly go to the menu bar than press ok and say mihir u r
out now.....from unilogic agar dam hai to kar kuh
Is This Answer Correct ? | 1 Yes | 10 No |
Can i know some of the Realtime tickets that anyone has been faced ?
What is the use of message command in a report? What are the different message types?
A field containing currency amounts (data type curr) must be assigned to a reference table and a reference field. Explain.? : abap data dictionary
Did you create primary index?
How to add a column to a table control while using alphanumerical layout editor ?
What is roll area?
What is a check table and what is a value table?
why we have to define function group?
How to read files and process BDC's automatically ?
wat are the process that can be executed & tracked in a workflow?
how to call the smart form from the report?is it Possible or not?
What is the syntax for call transaction? : abap bdc