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 :MESSAGEG-I

Former Member
0 Likes
462

Hi ,

Please check below code:

select-options:
       s_re  for VARI-REPORT,
       s_var for VARI-VARIANT.

message e001(zg) with s_var+3 s_rep+3.

I am getting error :<b>The sum of the offset and length (=34) exceeds the length of the start (=31) of the structure. - not allowed in Unicode programs</b>. -

Anybody knows how to solve this issue?

Thanks & regards,

Yogita

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
417

Hi Yogita,

give the required characters like below.

message e001(zg) with s_var3(<no.ofchar>) s_rep3(<no.of char>).

Regards,

Atish

2 REPLIES 2
Read only

Former Member
0 Likes
418

Hi Yogita,

give the required characters like below.

message e001(zg) with s_var3(<no.ofchar>) s_rep3(<no.of char>).

Regards,

Atish

Read only

0 Likes
417

Thanks Atish!