cancel
Showing results for 
Search instead for 
Did you mean: 

abap statement

Former Member
0 Kudos
61

Hi

I have one variable X whose value is 'LONDON'.I have one other variable Y whose value should be first letter of X.

So Y=L

I wrote ABAP statement Y=X + 0(1) but its not working.How to do this?

Thanks.

View Entire Topic
TuncayKaraca
Active Contributor
0 Kudos

Hi Simon,

DATA:

   x TYPE C LENGTH 10,

   y TYPE C LENGTH 1.

x = 'LONDON'.

CONDENSE x.

y = X(1).

Then y becomes 'L'.