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 quan to atflv

david_manras
Explorer
0 Kudos

Hello everybody,

Do you know how can I converse a variable with type bdmng (quan 13) into variable with type ATFLV (FTLP 16).

thanks in advance

regards

3 REPLIES 3

naimesh_patel
Active Contributor
0 Kudos

You can just move the content of one variable to another.

Like:


DATA: L_BDMNG TYPE BDMNG,
      L_ATFLV TYPE ATFLV.

L_BDMNG = '12.300'.
L_ATFLV = L_BDMNG.   " <<

WRITE: L_ATFLV.

Regards,

Naimesh Patel

0 Kudos

Hello,

when i did it, the variable losted its value...

thanks

Former Member
0 Kudos

in data declarations do assign according to ur need