cancel
Showing results for 
Search instead for 
Did you mean: 

Amount In words in Arabic

former_member351438
Participant
0 Kudos

Dear Sap Masters.

As per my subject name. I want to show amount in words in Arabic format.

I pasted my formula i created in crystal report for your reference. Hope you can help me with this one. Thanks a lot

IF {OINV.DocCur} = 'SAR' THEN
{OINV.DocCur} + ' ' + UPPERCASE(ToWords({OINV.DocTotal}))
ELSE 
{OINV.DocCur} + ' ' + UPPERCASE(ToWords({OINV.DocTotalFC}))

Accepted Solutions (1)

Accepted Solutions (1)

ido_millet
Active Contributor
0 Kudos

The image below shows the results from a prototype UFL function to do this.
The test assumes you wish to specify the amount as currency in Egyptian pounds.
Are the results correct?

former_member351438
Participant
0 Kudos

This what I need. Please

former_member351438
Participant
0 Kudos

Hello,

Im hoping you can guide me.

0 Kudos

hi, ido Millet

i want this kind of result on above image like Value in Arabic

i tried but didn't get any solution i try 3rd party tool that you share blow but didn't get solution

can you please share me this formula or UFL dll that you used in formula ?

mrhs84
Discoverer
0 Kudos

Could you please provide me with the function?

ido_millet
Active Contributor
0 Kudos

This function is part of my CUT Light UFL (User Function Library):
https://www.milletsoftware.com/CUT_Light_User_Manual/#uflNumber2Arabic()

There are other 3rd-party UFLs listed here.

Answers (3)

Answers (3)

ido_millet
Active Contributor
0 Kudos

I finished implementing this as a new function in my UFL (User Function Library).
A list of 3rd-party UFLs is available here, and mine is one of them.
Or you can implement similar logic in your own UFL.

abhilash_kumar
Active Contributor
0 Kudos

Hi,

The ToWords function in CR only supports English words.

You'd need to write your own function that converts amounts into Arabic literals.

-Abhilash

former_member351438
Participant
0 Kudos

Hello,

Can you teach me how to do that?

ido_millet
Active Contributor
0 Kudos