Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Upgradation error

Former Member
0 Likes
656

Hi ,

After unicode check i got an error ie..

Liketype should be replaced ..

pls help in this

thanks and regards,

suman

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
635

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

5 REPLIES 5
Read only

Former Member
0 Likes
635

Hi,

Can you specify on which statement has got this error in your program.

Regards,

Sunil

Read only

0 Likes
635

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

Read only

0 Likes
635

No suman,

It is inside the "Data:Begin of l_details

ERROR HERE

end of l_details.

Post that code!!

regards

sas

Read only

tarangini_katta
Active Contributor
0 Likes
635

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,

Read only

Former Member
0 Likes
636

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