Dollar and yen symbols in an ABAP report

I have been asked to print an ABAP report that would contain the dollar sign when the amount is US dollars and the yen sign when it is yen. Can I do that? If so, how?

    Requires Free Membership to View

IF currency EQ 'USD'.
WRITE '$'.
ELSEIF currency EQ 'JPY'.
WRITE '¥'.
ENDIF.
WRITE amount CURRENCY currency.
< br> If your keyboard doesn't have it, you can get the Yen symbol by pressing down the *ALT* *key*, type the four-digit *code 0165.*

This was first published in December 2004

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.