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: 

FM to convert HEXADECIMAL to DECIMAL in ECC6

Former Member
0 Kudos

Hi All,

Please help me in converting HEXADECIMAL VALUE to DECIMAL VALUE in SAP ECC6 using Functional modules or any conversion method.

Thanks in advance.

Regards,

Mohan

3 REPLIES 3

former_member705122
Active Contributor
0 Kudos

Welcome to SCN...

Search forum...

Similar post:

former_member203501
Active Contributor
0 Kudos

hi use there fms..

NLS_STRING_CONVERT_FROM_SYS

NLS_STRING_CONVERT_TO_SYS

Former Member
0 Kudos

Try the following code :

DATA l_hex TYPE X.

DATA l_dec TYPE i.

l_hex = '10'.

l_dec = l_hex.

write: l_dec.

you will see a '16' on the screen

You can even go for the following function module :

FITP_UTIL_CONVERT_HEX2DEC