‎2010 May 14 12:35 PM
Hi friends,
Can anyone explain me the difference between the following :
1) TYPE , TYPES and LIKE
2) xyz TABLE OF abc , xyz STANDARD TABLE OF abc.
I want to know as to where to use TYPE , TYPES and LIKE.
Also when should we write TABLE OF and when STANDARD TABLE OF and if written any , whats the difference.
Kindly help !!!!!
‎2010 May 14 12:43 PM
Hi Akjain,
You will get good explaination if you use F1 help in ABAP editor. If you still need further information post here again.
--
Reddy
‎2010 May 14 1:10 PM
Hi
See exxamples:
You can
var type matnr
var like mara-matnr
You can
w_var like mara-matnr.
var like w_var.
but you can't
var type w_var.
its always var type (Basic data type).
Regards
Sagar
‎2010 May 14 1:13 PM
Please search before posting, use F1 or SAP online help.
Thread locked.
Thomas