‎2009 Feb 12 3:44 PM
Hi ,
After unicode check i got an error ie..
Liketype should be replaced ..
pls help in this
thanks and regards,
suman
‎2009 Feb 13 10:00 AM
hi,
use types declaration :
example :
Types : begin of ty_mara,
matnr type matnr_d,
end of ty_mara.
data : gt_mara type standard table of ty_mara.
In the above way.u can declare and avoid like..
Rgds.,
subash
‎2009 Feb 12 3:49 PM
Hi,
Can you specify on which statement has got this error in your program.
Regards,
Sunil
‎2009 Feb 13 9:53 AM
Hi
In decleration "Data:Begin of l_details " is there but it is throwing error use like line of or type line of instead of begin of could u pls help in this
‎2009 Feb 13 10:00 AM
No suman,
It is inside the "Data:Begin of l_details
ERROR HERE
end of l_details.
Post that code!!
regards
sas
‎2009 Feb 12 3:52 PM
Hi Suman,
In the uncicode system it does not accept to use the like for the standarad field.
For example if you giving
Dat a; l_vbeln like vblen.
It shows an error in extended check .
Data : l_vbeln type vbeln should be the correct.
Thanks,
‎2009 Feb 13 10:00 AM
hi,
use types declaration :
example :
Types : begin of ty_mara,
matnr type matnr_d,
end of ty_mara.
data : gt_mara type standard table of ty_mara.
In the above way.u can declare and avoid like..
Rgds.,
subash