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

convert statement to Unicode

Former Member
0 Likes
617

Hi Guys,

i have the following statement which gives an Syntax error if you activate Unicode Checks:

data : x type x value 34.

field-symbols : <fc> type c.

assign x to <fc> casting type c.

How can i make this statement unicode enabled?

thanks for your help.

best regards,

Kai

1 ACCEPTED SOLUTION
Read only

athavanraja
Active Contributor
0 Likes
590

Check this code.

data : x type x value 34.

field-symbols : <fc> type any.

assign x to <fc> .

Regards

Raja

2 REPLIES 2
Read only

athavanraja
Active Contributor
0 Likes
591

Check this code.

data : x type x value 34.

field-symbols : <fc> type any.

assign x to <fc> .

Regards

Raja

Read only

0 Likes
588

Hi Raja,

thanks this solved my problem....

best regards,

Kai