what is difference b/w like and type statements?give
example? when to use like and when to use type?
Answer Posted / guest
when refering to type-pool you need to use TYPE
declaration, and LIKE is used to refer your already
declared variable. And for declaring native types 'N' 'C'
you cannot use LIKE there.
data: matnr like mara-matnr,
matnr1 type mara-matnr.
will not make any difference in the program. however
data: matnr type mara-matnr,
matnr1 like matnr. when the attribute of matnr
changes will affect matnr1 also.
and LIKE statement become obselete in Object programming.
you can use TYPE statements only there.
Is This Answer Correct ? | 4 Yes | 0 No |
Post New Answer View All Answers
Can you delete data element, which is being used by table fields?
1. If I send 5 entries of table from one system to another system, if the only 4 entries there in the target system what I have to do? 2. If I send the customer master IDOC from one SAP system to another system, if one field is missing in target table what is the steps? 3. If I want to access the 4th row 3rd column in the hashed table how to do it? 4. Whether there is any other statement than MODIFY statement to modify the content of internal table?
What are the different types of abap/4 programs?
If I have put commit in badi implementation class after update, is it allowed? Also if some standard functionality already implemented an update and now i m doing update and if it fails, what will be the impact of commit?
What is a data class? : abap data dictionary
How can we declare a table control in the abap/4 program?
Can we display a list in a pop-up screen other than full-size stacked list?
What are base tables of an aggregate object?
what are the 2 other types of views, which are not allowed in release 3.0? : abap data dictionary
What are the modes in lock objects? : sap abap data dictionary
How to create any functions?
Explain what are the different functions used in sap script? What are the parameters used in each function?
What is difference between inner join and outer join?
What is payroll driver
What are the basic objects of the data dictionary?