Currency in JPY format

Hi,
I have a requirement which I need to display the amount in JPY format in webdynpro AVL output
i.e. If my amount is 15,00 it should be displayed as 1500 without any decimal places.
Please let me know how to do this.
Thanks,
Neethu.

Dear Neetu,
For certain currencies , the value in the database table and and the actual value may differ.
This is because In the R/3 System tables, currency fields are stored as decimal figures with a variable number
of decimal places. Each currency field refers to a currency key field to interpret the correct positioning of the decimal
point and arrive at the correct value.
Now these decimal positions are rarely changed in a Production system.So either you can
incorporate the multiplication in your code15.00 * 2 = 1500 for 'JPY' or fecth the no of decimals from the table TCURX for 'JPY'
and do accordingly.Do have a word with your fuctional consulatnt also.
Regards,
Rijuraj

Similar Messages

  • Currency in indian format

    Hi,
    I'm using scripts in my company's HR implimentation.
    I need salary to be printed like this:  1,00,000 for lakhs
                                                           10,000 for thousands,...etc
    I mean i need indian way of printing currency value.
    I'm using <b>set country <key></b>, but it's not giving what i want.tell me the correct one.
    points will be awarded
    thanks,
    ravi

    Hi Ravi,
    Have you tried using write value to char_value using currency 'xx'.
    I have used this before with some success in my forms where the format changes pending on the currency. JPY was what messed me around and this worked to print JPY correctly.
    Regards,
    Marius

  • Foriegn currency in unique format

    Hi Gurus
    This is regarding, I have requirment in rdf report. i want to display foriegn currency in unique format . how to do this in rdf. Please help me it is urgent.
    regards,
    Sreeni.

    phani,
    Specify Custom Data format for the numeric field...Go to Data format tab>Check "Override Default Data Format">Select "Custom" from the drop down and put some thing like # ## ### ###.#0
    which result in spaces instead of comas in your column as well as grand total for that particular column.
    mark answers promptly.
    -bifacts
    http://www.obinotes.com
    J

  • How SAP captured the RAW MAT amount from Local currency to JPY.

    Hi All,
    I've class 1 material when perform maintained receipt found the RAW Mat material was posting wrong figure when convert from Local Currency RM to JPY.
    Exp: my RAW MAT amount is material standard price x qty.
    Let said my standard price is RM9.61 and the qty is 180 so that my Raw Mat amount is RM1729.80 and exchange rate is 3.718 form JPY to MYR when i display it on  document currency the amount show in JPY is 46,440 instead off 46,525.
    But when i cancel the document the system do captured the correct amount 46,525.
    How sap get this Raw Mat amount?
    Thanks in advance.

    MYR = Malaysia Ringgit.
    The RAW MATT price is correct when in Local Currency which is in MYR but there are the variance when convert to others currency like JPY and USD.

  • Currency in Europe Format

    Hi,
    I have a requirement to show currency in european format that is i want spaces as thousand separator instead of commas and i want to total in grand total. Please guide me to achieve the same.
    Thanks,
    Phani.

    phani,
    Specify Custom Data format for the numeric field...Go to Data format tab>Check "Override Default Data Format">Select "Custom" from the drop down and put some thing like # ## ### ###.#0
    which result in spaces instead of comas in your column as well as grand total for that particular column.
    mark answers promptly.
    -bifacts
    http://www.obinotes.com
    J

  • Currency code "JPY"

    Hi,
    It explains my problem again.
    There is an amount of money of Japan "12,345".
    This amount of money is stored in DB of the R/3 system in the form of "123.45(JPY)".
    When this amount of money is acquired by using the rfc module of WEBDYNPRO, "123.45(JPY)" can be acquired.
    When the amount of money is output according to given information, it is displayed, "123".
    (The currency code "JPY" doesn't treat the decimal. )
    However, this is not a correct amount of money display. It is a method that I requests that is converted and displayed, "123.45" -> "12,345".
    R/3 system DB : 123.45
    RFC module acquisition : 123.45
    displays : 123(This is not correct. )
    Display for which I hope : 12,345
    regards.
    koo

    Thank you for the reply.
    Certainly, the problem can be solved even by this method.
    However, when it is this method, it is necessary to describe all the display forms of each currency.
    JPY -> DecimalFormat("#00,000")
    USD -> DecimalFormat("#000.00")
    KUD -> DecimalFormat("#00.000")          etc.
    If it is ABAP instruction, it is possible ..appropriate display form.. to mend by referring to the currency.
    Write 'Amount of money' To xxx currency 'Currency code'.
    It is an instruction and a method that I requests by WebDynpro for Java to convert into an appropriate display form only by referring to the currency just like ABAP instruction.
    To begin with, is such a thing possible in WebDynpro for java instruction?

  • Outputting currency in external format???

    I am doing project for an external client. (China). I was outputting some currency values in report. I a mworking from india. Now i am getting warning that i should output currency in external format?? What does that mean???
    Rakesh

    Hi,
    The format currency depends on the user parameters.
    You can use the WRITE statament, and the system automatically will write the currency in according to the user parameters.
    You can try to use the statament SET COUNTRY <COUNTRY>, set all formats (date, currency) used in a country. In this way your program should be independent from user parameters.
    Regards,
    Satish

  • Lakhs Currency in Thousands format in Oracle Report

    Hi Gurus,
    I have an requirement to change the currency amount display format should be in thousands for the lakhs currency since our client into UAE region and they wont use the lakhs currency format.
    Regards
    Ram

    I don't know what you mean. Instead of 1.000.000 you want to display 1.000?
    Just divide the amount by 1000 and make the prompt something like "* 1.000 Lakhs"

  • WRITE command gives unexpected value when currency is JPY (japanse yen)

    Hi All
    I am getting unexpected value for below WRITE command but only when the currency is JPY (Japan Yen)
    lv_amount = 1215.40
    lv_currency = u2018JPYu2019.
    write   lv_amount   to   ev_amount_ext    left-justified    no-gap   NO-GROUPING   currency lv_currency.
    Value wrongly gets as ev_amount_ext = 121540 (Decimal takes as full value)
    Appreciate your help if you have any idea on this please
    Many Thanks
    Iver

    Hi,
      use like this
      lv_amount = '1215.40'
    lv_currency = u2018JPYu2019.
    write lv_amount to ev_amount_ext left-justified no-gap NO-GROUPING currency lv_currency.
    other wise.
    data lv_amounts  type string.
    move lv_amount to lv_amounts.
    lv_currency = u2018JPYu2019.
    write lv_amount to ev_amount_ext left-justified no-gap NO-GROUPING currency lv_currency.

  • Currency and Number Formats

    Hi Guys
    Is anybody aware of an equivalent of ISO 8601 that deals with Currency and Number formats?
    Thanks

    Thanks John
    My original question was a little ambiguous. What I'm really asking is whether, as with 8601, there is an agreed standard way of expressing numbers, (including currency). For instance, is there an 'approved' sign for indicating the start of the decimal portion, ('.' or ',')?
    The application already makes use of the various formatting utilities and ResourceBundles but I've been asked to investigate if there is an ISO specification that we should default to, (rather than just UK English). As I'm sure anybody who has used their site will appreciate, it is not overly simple to establish the existence and contents of a standard ;->
    Thanks in advance
    J

  • Currency conversion JPY to USD issue

    Hi Friends ,
    I am facing an issue while currency conversion from JPY to USD . I have defined currency conversion type in RSCUR , it is working fine for all other currencies except JPY . I have the exchange rate maintained in TCURR but still it shows exchange rate not maintained while running the query  . Could  you please tell what can be possible reasons for it .
    Thanks in Advance .

    Hi,
    Check the time reference based on which the currency conversion rate is maintained. Run function module READ_EXCHANGE_RATE by giving the date, JPY to USD and check if returns values.

  • Formatting a currency in different format for 2 company codes

    Hi,
    I have two company codes(MCFL and MIL) in Indian project, now my requirement is to maintain different currency format which means company code specific.
    In PO print I wanted to show as different format.
    Is it possible to do setting in customizing level.
    Regards,
    Vadamalai A

    Hi,
       You can set the decimal notation format at user level. Go to Su3 - Defaults tab and maintain the format at user level.
        If you want different format in printout, then you need to put the logic in the smartform only, to validate the country and pout the corresponding format.
        Revert back if your question is different.
    Regards,
    AKPT

  • Long currency type Output format in BSP

    Hi all.
    I'm looking forward to format in a BSP the output of a currency field without decimals and using the dot separator, for example: in database i have the value 1234567891011,1234 then display in the BSP 1.234.567.891.011,1234 is there any function module to archieve this?
    Thanks.

    Hi there,
    try
    <%= page->to_string( value = wa_curr format = if_bsp_page~CO_FORMAT_CURRENCY reference_value = `USD` ) %>
    Cheers
    G

  • Currency Input Field Format

    Dear Experts,
    I have a requirement to modify the currency input fields on interview screens to automatically format as below, while entering values.
    - Right align values in the entry field
    - Prefix currency sign
    - Hide decimals
    - Comma as 1000 separator
    Amount
    $500,000,000
    Any suggestions on this would be appreciated.
    Thanks,
    Anup

    This will require custom work. There's no out-of-the-box way to configure what you're describing. Not if you want it to display that way as you're typing the numbers.
    For configuring the way the currency value displays after being submitted, have a look at the options in the application.properties file: http://docs.oracle.com/html/E48376_01/toc.htm#Technical Reference/Config_Files.htm#application.properties --> Input and output formats --> Default formatter

  • FAGLB03 , line item for KRW currency display incorrect format

    Hi Experts,
    I'm in ECC5 and working in tcode FAGLB03 with account which has KRW(Korean Won) as hard currency.
    During I drill down into document which posted in USD as Local currency and KRW in hard currency, Why hard currency display 77.77 instead of 7,777 KRW.Please advise ,How to solve?
    PS. Another tcode e.g. FB03 , FBL3N can display properly.
    Thank you.
    Mitpracha.

    Hi,
    Check and implement note 941882.
    Regards,
    Eli

Maybe you are looking for

  • Unused Objects Content Report runs forever

    Dear Portal Gurus we have a lot of content in our portal (thousands of objects created by us) The main part is from uploading the ERP Roles into the portal. Our guess is, that quite a bit is not used at all. It seems that the two "Unused Objects" rep

  • My iMovie is not working, it tells me there's a problem but does not know the problem, Can someone help me figure this out please?

    A couple of days ago, my I opened up my iMovie and it just goes into the blank screen. I am able to click on things like, "import" or "create" and it will take me into the next window, but when I choose an option, I receive a message that there is a

  • Error while activation the Datastore Object

    Hi folks, I am in SAP BASIS, so not aware of BI very much...can u help me in this, One user is getting error while activation the Datastore Object below is error log, (Green) Activation of Objects with Type DataStore Object (Green) Checking Objects w

  • Active Directory Disabled

    Hello, I just installed Windows Server 2012. After adding the DNS and Active Directory Features/Roles to the server, I noticed that Active Directory Services is not running, but it is disabled. When I try to start the service, I receive the error - T

  • Determining Oracle Auditing events/objects

    I am testing some software using an Oracle database and I have confirmed that auditing has been enabled (and I can find the logs ok). I have not been able to figure out what events/objects are being audited however. Does anyone know which table conta