Thursday 1 March 2012

How To Convert Numbers Into Words in Oracle Apps 11i

Oracle Apps Has Provided an Inbuilt function AP_AMOUNT_UTILITIES_PKG which can be used to achieve the result.

SELECT (ap_amount_utilities_pkg.ap_convert_number (111234234324)) Amount_In_Word
FROM DUAL

Example:
One hundred eleven billion two hundred thirty-four million two hundred thirty-four thousand three hundred twenty-four


1 comment:

  1. is there a way to convert into other languages as well?

    for ex: R$ 3.545.601,35 is in Brazil currency.
    I have to print as..

    três milhões, quinhentos e quarenta e cinco mil, seiscentos e um reais e trinta e cinco centavos

    ReplyDelete