How can u transfer the data from one itab to another
without using move & write statements?
Answer Posted / yuni ratmiani
Transfer data can using command
APPEND LINES OF itab1 [FROM idx1] [TO idx2] TO itab2.
or
using itab1[] = itab2[].
| Is This Answer Correct ? | 13 Yes | 0 No |
Post New Answer View All Answers
Explain how do you get output from idoc?
What are client dependant objects in abap/sap?
How to get that a secondary index is attached to a select query?
what is abstract classes
What are the steps to be followed to set lockobjects? : sap abap data dictionary
Define dispatcher?
How many default tab strips are there?
What is the use of enqueue function module? : sap abap data dictionary
Which function module would you use to check the user’s authorization to access files before opening a file?
Difference between sy-tabix and sy-index? Where it is used? Can you check sy-subarc after perform?
What are the Synchronous and asynchronous methods in bdc ?
What are the two statements which are required in an abap program to output an icon using a write statement?
What is Buffering Concept? When should a Table be buffered?
What is the difference of update types in call transaction method ? : abap bdc
There is a situation where there is a field "MATERIAL DESCRIPTION" in say 20 display only transaction. You want that whenever user opens any of these transaction, this particular field is masked with ****. But table does not holds ****. It holds the actual value. What are different ways of doing it? Which is the best way.