‎2010 Mar 09 3:48 PM
Hi All,
I have the following issue while upgrading to ecc6.0.
data:begin of it_cats,
include structure cosp,
end of it_cats.
I am geeting syntax error as include structure is not allowed in ecc6.0.What is the replacement for this?
Thanks.
Ramya.
‎2010 Mar 09 3:53 PM
‎2010 Mar 09 4:03 PM
data:begin of it_cats.
include structure cosp.
data: end of it_cats.
‎2012 Dec 22 9:49 PM
Hallo There,
I read some of the already available posts on this topic but did not find any relevant answers so please excuse of the information already exists out there.
Here is the question:
Please consider the code (from above posts):
data:begin of it_cats.
include structure cosp.
data: end of it_cats.
I read some where that this can be replaced by :
DATA it_cats type cosp.
Is this correct ?
http://www.sts.tu-harburg.de/teaching/sap_r3/ABAP4/includ02.htm
Regards
SG