Application Development 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: 

Unicode issue

vijay_kumar134
Participant
0 Kudos

Hi Friends,

Please help me out for the belwow issue, i have attached the error screeshots.

Thanks.

Vijay.

1 ACCEPTED SOLUTION

Former Member
0 Kudos

you have declared ls_fieldcat using wrong type.

do this:

declare like this:

data ls_fieldcat type slis_fieldcat_alv.

or

data  ls_fieldcat like line of vt_fieldcat.

2 REPLIES 2

Former Member
0 Kudos

you have declared ls_fieldcat using wrong type.

do this:

declare like this:

data ls_fieldcat type slis_fieldcat_alv.

or

data  ls_fieldcat like line of vt_fieldcat.

0 Kudos

Thanks Abhishek.

Vijay.