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

Converting Normal field into amount field

Former Member
0 Likes
420

Hello Gurus,

I need urgent help.

I want to conver the Normal field into Amount filed.

DATA : AMOUNT(13),

DATA : WRBTR LIKE BSEG-WRBTR.

So I want TO Convert Normal field into amount field.

This is urgent. please help me.

Thanks in advance.

Best Regards,

zubera

Hello Gurus,

I need urgent help.

I want to conver the Normal field into Amount filed.

DATA : AMOUNT(13),

DATA : WRBTR LIKE BSEG-WRBTR.

So I want TO Convert Normal field into amount field.

This is urgent. please help me.

Thanks in advance.

Best Regards,

zubera

2 REPLIES 2
Read only

Former Member
0 Likes
394

Hi,

Use FM HRCM_STRING_TO_AMOUNT_CONVERT

pass the char(amount) and decimal separator, thousand separator.

you get the char converted to amount/currency

Regards,

Satish

Read only

Former Member
0 Likes
394

Try this also

translate AMOUNT using ', '.

condense AMOUNT no-gaps.

WRBTR = AMOUNT.

Regards,

Satish