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


Please Help Members By Posting Answers For Below Questions

Can you delete data element, which is being used by table fields?

1041


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?

1640


What are the different types of abap/4 programs?

808


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?

1547


What is a data class? : abap data dictionary

827


How can we declare a table control in the abap/4 program?

846


Can we display a list in a pop-up screen other than full-size stacked list?

885


What are base tables of an aggregate object?

829


what are the 2 other types of views, which are not allowed in release 3.0? : abap data dictionary

795


What are the modes in lock objects? : sap abap data dictionary

753


How to create any functions?

745


Explain what are the different functions used in sap script? What are the parameters used in each function?

764


What is difference between inner join and outer join?

830


What is payroll driver

1824


What are the basic objects of the data dictionary?

752