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: 

convert statement to Unicode

Former Member
0 Kudos
203

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

athavanraja
Active Contributor
0 Kudos
176

Check this code.

data : x type x value 34.

field-symbols : <fc> type any.

assign x to <fc> .

Regards

Raja

2 REPLIES 2

athavanraja
Active Contributor
0 Kudos
177

Check this code.

data : x type x value 34.

field-symbols : <fc> type any.

assign x to <fc> .

Regards

Raja

0 Kudos
174

Hi Raja,

thanks this solved my problem....

best regards,

Kai