ALLInterview.com :: Home Page KalAajKal.com
 Advertise your Business Here     
Browse  |   Placement Papers  |   Company  |   Code Snippets  |   Certifications  |   Visa Questions
Post Question  |   Post Answer  |   My Panel  |   Search  |   Articles  |   Topics  |   ERRORS new
   Refer this Site  Refer This Site to Your Friends  Site Map  Bookmark this Site  Set it as your HomePage  Contact Us     Login  |  Sign Up                      
Do you have a collection of Interview Questions and interested to share with us!!
Please send that collection to along with your userid / name. ThanQ
Google
 
Categories  >>  Software  >>  ERP CRM  >>  SAP  >>  ABAP
 
 


 

 
 Basis interview questions  Basis Interview Questions
 ABAP interview questions  ABAP Interview Questions
 SAPScript interview questions  SAPScript Interview Questions
 SD interview questions  SD Interview Questions
 MM interview questions  MM Interview Questions
 QM interview questions  QM Interview Questions
 PP interview questions  PP Interview Questions
 PM interview questions  PM Interview Questions
 PS interview questions  PS Interview Questions
 FI CO interview questions  FI CO Interview Questions
 HR interview questions  HR Interview Questions
 SAP CRM interview questions  SAP CRM Interview Questions
 SRM interview questions  SRM Interview Questions
 APO interview questions  APO Interview Questions
 Business Warehouse interview questions  Business Warehouse Interview Questions
 Business Workflow interview questions  Business Workflow Interview Questions
 SAP Security interview questions  SAP Security Interview Questions
 SAP Interfaces interview questions  SAP Interfaces Interview Questions
 Netweaver interview questions  Netweaver Interview Questions
 SAP ALE IDocs interview questions  SAP ALE IDocs Interview Questions
 SAP B1 interview questions  SAP B1 Interview Questions
 SAP AllOther interview questions  SAP AllOther Interview Questions
Question
which one is efficient in following command to copy data
from one itab1to another itab2 . both itab table has same
structure.
1. move itab1 to itab2
2.move corresponding field of itab1 to itab2
3. itab2[] = itab2[]
4.appends line of itab1 to itab2..
 Question Submitted By :: Atul_gcet
I also faced this Question!!     Rank Answer Posted By  
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 1
i thing 
itab2[] = itab1[]
 
Is This Answer Correct ?    4 Yes 1 No
Atul_gcet
[Unilogic Software]
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 2
.move corresponding field of itab1 to itab2
 
Is This Answer Correct ?    0 Yes 6 No
Bal
 
 
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 3
option 1 OR 3 will best .

Answere 2 is not appreciate b'coz in move corresponding for 
every field it will check 2 i_tab every time and then place 
data .
 
Is This Answer Correct ?    2 Yes 2 No
Sachin Sharma
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 4
option 3 best if both internal tables structure are same.

i.e itab2[] = itab1[].
 
Is This Answer Correct ?    2 Yes 1 No
Hariabap
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 5
To move all entries from one internal table to another 
which has the same structure use the following statement: 
ITAB2[] = ITAB1[].
 
Is This Answer Correct ?    1 Yes 1 No
V.ramakrishna
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 6
i think choise 1 is right ... most said itab2[] = itab2[]...

here both the internal table name is same , more over this 
symbol ' [] ' indicates to copy only the body of the 
internal table . 
                                thank you.
 
Is This Answer Correct ?    0 Yes 2 No
Prasad1983
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 7
appends line of itab1 to itab2.

This is the best way do the thing.


THANKS ...
 
Is This Answer Correct ?    0 Yes 2 No
Anuraj Singh Rana
 
  Re: which one is efficient in following command to copy data from one itab1to another itab2 . both itab table has same structure. 1. move itab1 to itab2 2.move corresponding field of itab1 to itab2 3. itab2[] = itab2[] 4.appends line of itab1 to itab2..
Answer
# 8
If structure is not different, it's better to go with 1st 
or 3rd option. Both are same. Normally we have to go for 
append when structure is different.
 
Is This Answer Correct ?    1 Yes 0 No
Arun S
 

 
 
 
Other ABAP Interview Questions
 
  Question Asked @ Answers
 
1)you are creating the table and with EmpID, Lastname and Zender(Male and Female) only the Male and Female data only should entered other data should not entered. EDS1
what are performence analysis techniques?  2
without using matchcode ,help view ,check table , domain how to create the search help anybody know this answar plz post imdtly Wipro2
SAP modifications and enhancements stored in which table?  1
how to create bdc for sales order ? if any one kow the steps plz mail me at toamitshri@gmail.com IBM2
what are the events in lsmw? C-DAC4
Types of windows and Difference between them in Scripts EDS1
what is an user exit? CSC3
How to debug an Idoc at runtime? TCS1
Run Time Analysis - Transaction code? Cap-Gemini5
What are the types of internal tables?  3
What is the maximum value for Line-Size in the Report? CSC4
Can u give some master data in MM and SD SAP-Labs2
wat is EDI Administration & EDI Administration procedure?  1
What is pf-status? Sakshi2
HOW MANY EDITORS ARE THERE IN SAP ABAP. WHAT ARE THEY AND THERE USES. SAP-Labs3
How you will catch errors in call transaction? Intel3
What are the views when we are creating Material ? IBM2
What is the Procedure for BDC? Accenture1
what is search helps..How many types are there? Cap-Gemini3
 
For more ABAP Interview Questions Click Here 
 
 
 
 
 
   
Copyright Policy  |  Terms of Service  |  Help  |  Site Map 1  |  Articles  |  Site Map  |   Site Map  |  Contact Us interview questions urls   External Links 
   
Copyright © 2007  ALLInterview.com.  All Rights Reserved.

ALLInterview.com   ::  Forum9.com   ::  KalAajKal.com