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

Problem in declaring constant - getting unicode error

Former Member
0 Likes
389

Hi,

I am declaring a constant c_49 as below.

COnstants:c_40(39) TYPE c VALUE 'e_scmg_loc_fields TYPE SCMG_LOC_FIELDS,' .

It is giving the below error.

In Unicode programs, the " " character cannot appear in names, as it does here in the name " C_40".

What might be the reaon for that?

Please help me to solve this.

Thanks in advance,

Sravanthi Palepu.

1 REPLY 1
Read only

Former Member
0 Likes
342

Hi,

Try declaring it as a string and check.



COnstants:c_40 TYPE STRING VALUE 'e_scmg_loc_fields TYPE SCMG_LOC_FIELDS,' .

Regards,

Vik