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

Unicode error in statement Describe Field

Former Member
0 Likes
659

Hi,

There is a statement in my program which is giving Unicode error.

DESCRIBE FIELD t_mara-mfrpn LENGTH len.

Here t_mara is internal table with header line. Unicode error which I am getting is 'In Unicode, Describe Length can only be used in Byte mode or IN....'.

Kindly let me know how to remove this unicode error without affecting the functionality.

Regards,

Rajneesh

4 REPLIES 4
Read only

former_member242255
Active Contributor
0 Likes
502

add IN CHARCATER MODE at the end of the DESCRIBE stmt

Read only

Former Member
0 Likes
502

Will it cause any impact in functionality?

Read only

0 Likes
502

therer willnot be any impact ...

Read only

Former Member
0 Likes
502

syntax check always finds the error when the addition BYTE or CHARACTER MODE is missing in the statement DESCRIBE.

And it will not cause any impact in functionality of your program