Multiple currency symbols in xml publsiher template

Hi All,
how to get the multiple currency symbols based on the quote currency in xml pusblisher..
what are the setups and if any examples plz provide.
Rgds
Sarada

Please post the details of the application release, database version and OS.
Please see (Overview of Available Patches for Oracle XML Publisher (embedded in Oracle E-Business Suite) [ID 1138602.1]) and make sure you have the patches applied for multiple currency symbols.
Thanks,
Hussein

Similar Messages

  • Pound (currency) symbol, and Euro symbol on invoice template.

    Hi - I have written an invoice using one of the pages templates. I changed the Euro symbol (€) to a pound symbol (£) but every time it is automatically changed back to pound symbol again. Having entered the pound symbol. how can I make it stay there?

    Hi there - Thanks, but I've got it sorted - I had to select a cell within the invoice template, then click on Table Inspector, then format, then currency, then select currency. I would prefer to just delete the currency symbols with the mouse, and then put in the ones I want, but I know how to do it now. Maybe Britain should just join the Euro - or maybe not?

  • Euro currency symbol  using '€'

    Hi Everyone,
    Do you have any problem populate the Euro currency symbol using '€'. I use XDK 9.2.0.2.0 and run on WinNT, Solaris and both display the Euro currency symbol using '€' as a "?"
    Sample test.xsl:
    <xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform">
    <xsl:output method="xml" encoding="ISO-8859-1"/>
    <xsl:template match="/">
    <Root>
    <euro>&#8364;</euro>
    </Root>
    </xsl:template>
    </xsl:stylesheet>
    or
    test.xsql
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <Bid xmlns:xsql="urn:oracle-xsql">
    <euro>&#8364;</euro>
    </Bid>
    Thanks

    Using the unicode &#8364; Your best bet is to ask tom at: http://asktom.oracle.com

  • Currency Symbols Issue

    Hi All,
    We have an invoice report, and we are getting currency symbols from the fnd_currencies table. For GBP we are getting '£' symbols and we are using srw.user_exit('FND FORMAT_CURRENCY CODE=':CP_CURRENCY_CODE....) function to get the formatted amount in the report. But when we change the output format to XML, srw.user_exit..is throwing exception for all the currencies except USD. When the format is text it is not throwing exception. please suggest what to do.

    You can put the short code like this in GBP, JPY, EUR
    xml, and declare the currency formatting in Templates based on the locale , you are running or by just hard-coding.
    <?format-currency:Numbervalue;currencycode;'true|false'?>
    if the thrid parameter is true, it display the currency and Number value , else no currency , just simply numbervalue.
    second param is, currencycode , can be from xml like GBP, JPY, EUR , or just hard code , if it is single currency template.
    or to make it generalized, you can put these settings in config, file for the muberFormatMask to be used.

  • Currency Symbol displays correctly locally, but not when I deploy to server

    Hi have some number fields, where I set the control hint on the view to Currency format. When I run locally, everything displays properly: $1,234.56
    But when I deploy my application to our development server, the $ is coming up as a ¤1,234.56. This happens to all my currency fields, not matter what object is displaying it.
    I've seen one other post that talks about using a numberConverter tag everytime I display the values, but I'd prefer to stick with "best practice" of using the control hints. Especially since it works fine locally, I have to think this is some sort of server side setting that I am missing. Does anyone have any idea what might be happening here?

    The ¤ symbol is a "neutral" currency symbol, it is used if no locale can be determined (no matter if you are using control hints or converters). Try setting a default local to your application on the faces-config.xml file.
    <?xml version="1.0" encoding="windows-1252"?>
    <faces-config version="1.2" xmlns="http://java.sun.com/xml/ns/javaee">
      <application>
        <default-render-kit-id>oracle.adf.rich</default-render-kit-id>
        <locale-config>
          <default-locale>en</default-locale>
          <supported-locale>en</supported-locale>
        </locale-config>
      </application>
    </faces-config>Hope this helps.

  • Problem with Currency Symbol in IR export to CVS

    I have a number of queries that have been successfully generating csv files for years and have been adapted to provide the basis for the same information to be available as an interactive report with the option to download as csv. The old scripts set the NLS settings at the outset. The Apex app sets the NLS environment in the vpd function. The apex report query is a "select * from some_view" style one that ultimately queries a remote view with several columns like this:
    select TRIM (LEADING ' ' FROM TO_CHAR(ROUND(100,2),'L9999G999G990D00')) x from dual;
    just as the were in the prior manual SQL.
    The "new" apex export to csv files contain an extra character preceding the currency symbol that is upsetting Excel on import.
    old-style hexdumps look like this:
    2c 22 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    new ones like this:
    2c 22 c2 a3 31 30 30 2e 30 30 22 2c
    ,"£100.00",
    Where on earth is Apex getting it into its head to add this (the on-screen report is fine!) and how can I stop it?
    Thanks in anticipation.

    hi,
    this is a normal problem u can avoid this by moveing these currencu value to a character field then print the char field us ing condece... &var(C)&..
    eve if not solve the problem use the TEMPLATE node..
    Please Close this thread.. when u r problem is solved. Reward all Helpful answers
    Regards
    Naresh Reddy K

  • Multiple namespaces in an XML document

    I have an XML document that I am trying to use within a data flow (XML Source)--the problem is that I keep getting an error message stating that the XML document has multiple namespaces and therefore, SSIS will not create the XSD for me.  If I take out the second namespace, I am able to successfully get the task to execute, but this XML is created with 2 namespaces and there is no way to get around this (I cannot get the report server to change these parameters)--my question is: does anyone know of a way to get SSIS to handle multiple namespaces so that I can process this XML document and extract the necessary data elements from it.
    Any assistance would be greatly appreciated.
    Thank you!!!!

    I am replying too much late..........thinking might be useful for someone !!!!
    SSIS does not handle multiple namespaces in the XML source file. You can find examples where you see the format
    <Namespace:Element>.
    The first step to avoid multiple namespaces is to transform your source file to a format that doesn’t refer to the namespaces.
    SSIS has an XML task that can do the transformation. Add the XML task to an SSIS Control Flow and edit it.
    Change the OperationType property value to XSLT, the SourceType to File connection and the Source to your source file that has the problem.
    Set the SaveOperationResult property to True.
    Expand the OperationResult branch and Set DestinationType to File Connection and the Destination to a new XML file.
    Add the following to a new file and save it with an xslt file extension.
    <?xml version="1.0" encoding="utf-8" ?> 
    <xsl:stylesheet version="1.0"         xmlns:xsl="http://www.w3.org/1999/XSL/Transform"> 
      <xsl:output method="xml" indent="no" /> 
      <xsl:template match="/|comment()|processing-instruction()"> 
        <xsl:copy> 
          <xsl:apply-templates /> 
        </xsl:copy> 
      </xsl:template> 
      <xsl:template match="*"> 
        <xsl:element name="{local-name()}"> 
          <xsl:apply-templates select="@*|node()" /> 
        </xsl:element> 
      </xsl:template> 
      <xsl:template match="@*"> 
        <xsl:attribute name="{local-name()}"> 
          <xsl:value-of select="." /> 
        </xsl:attribute> 
      </xsl:template> 
    </xsl:stylesheet> 
    Back in the XML task, set the SecondOperandType to File connection and the Second Operand to your new XSLT file.
    When you run the XML task, it will take your original file and apply the transformation rules defined in the XSLT file. The results will be saved in your new XML file.
    This task only needs to be run once for the original XML file. When you look at the new file, you’ll see the same data as in the original, but without namespace references.
    Now you can return to your data flow and alter the XML Source to reference the new XML file.
    Click on the Generate XSD and you should be able to avoid your error.
    When you click on the Columns tab in your XML Source, you will probably see a warning. This is because the data types may not be fully defined (for example there’s no mention of string lengths). This shouldn’t be a problem as long as the default data type
    (255-character Unicode string) meets your needs.
    =================life is beatiful..so !!===========
           Rahul Vairagi
    =================================== Rahul Vairagi =================================== My Blogs: www.sqlserver2005forum.blogspot.com www.knwhub.blogspot.com

  • Multiple currencies for one minisite

    We have a requirement so the different users can place orders in two different currency. Some of the customers are set up with USD and some of the customers are setup with CAD. So, when they login to istore, based on their customer Master - order management tab price list value - that currency code should default.
    I added both currencies with their default price list on minisite set up under pricing menu on left. Users are able to checkout and place an order in USD. But RMAs are not working - getting error "Please contact yor sales representative".
    My question is: is this possible to have two currencies work for one minisite based on customer master setup?
    If yes, How can I resolve RMA issue?
    Thanks.

    Hi,
    iStore supports multi-currencies and allows a user to switch currencies using the Global Bin.
    Please details below on using the Global Bin.
    Thank You,
    Deborah Bourgeois, Oracle Customer Support
    Excerpt details below are from Chapter 6 'Implementing Initial Customer Application Pages'
    Oracle® iStore Implementation and Administration Guide
    11i Part No. B13549-01
    12.0 Part No. B31536-03
    12.1 Part No. E13575-02
    Global Bin
    The Global Bin displays by default on the right side of the Site Home Page and other
    section pages, if the current site has multiple currencies enabled. The bin allows
    customers to select other currencies; when customers select a new currency, item prices
    are displayed with the newly selected currency.
    Important: In order for prices to display in additional currencies, the items must be set
    up on a price list in those currencies. See the chapter, Implementing Pricing, page 10-1
    , for details.
    To enable the Global Bin, set the profile option, IBE: Use Global Bin, to Yes. See the
    appendix, Profile Options, page A-1, for more details on the profile options settings.
    Just as with the Browse Bin, this profile works only if you use Fixed Layout when
    creating a section. If sections are associated to Configurable Layout, then you should
    map the bin using Configurable Layout for bins.
    By default, the Global Bin template (STORE_GLOBAL_STORE_BIN) is mapped to the
    JSP, ibeCAcdGlobal.jsp.
    Guidelines:
    • In order to view the bin, the user's active responsibility must not be iStore Sales
    Representative (IBE_SALESREP).
    • In order to display, the site where the bin will display must have multiple
    currencies enabled.
    • In order for the Global Bin to display on the shopping cart page, the current site
    must have multiple currencies enabled.
    • When the Global Bin is mapped to the shopping cart page, changing currency in the
    shopping cart page causes cart items to be re-priced in the newly selected currency.

  • Changing Currency Symbol from the Menu bar to other than €

    I use the Costa Rican colon symbol ¢ (in front of number) as a routine value, as well as the U.S. dollar symbol and it seems cumbersome to select the "Inspector" to make these alternate currency symbols (or any alternate to € symbol). Speaking of the Costa Rican colon, it is represented incorrectly anyway and I don't know how to change the symbol.
    Also, in the pop-up menu of the "Inspector -- currency" all currency symbols show as € and only when a cell is clicked after selecting a currency symbol, does it appear in the cell (not correct, but at least something other than €.
    This is my first hour of "playing with" Numbers. I hope it's not a sign of things to come.

    There are many variations to the symbols used for currency worldwide, please, if yours is wrong let Apple know. The feedback option is under Numbers on the menu bar. This is a user to user forum provided by Apple, not run by them.
    My symbol on the menu bar is $, which is correct and rather common worldwide, maybe a generic currency symbol is used for smaller areas of the world. I know I have the Australian flag rather than a New Zealand one on my menu bar for the international settings. We are obviously too small to have our own
    You can show all currency options in the inspector by changing the Numbers preferences. A quick way of selecting the correct currency in the inspector is to open the list and type the first few letters.
    I'd expect your default would be the same as you have set in the System Preferences > International.
    You could also make a couple of templates for yourself in both currencies and use them instead.
    Numbers is a neat piece of software, keep playing with it and you may well get to like it.

  • Currency symbol - default

    Hi there,
    I have installed iWork 09 and am using the inbuilt templates. The default monetary symbol is the UK Pound Sterling sign (GBP). If I cut and paste a Euro symbol into the 'cell', once I leave it, the Euro symbol disappears and is replaced by the default GBP symbol. Is there any way to either stop this from happening or telling the system that I want to us another currency symbol?
    Thank you for your help.

    Select the cell/s > Inspector > Table > Format > Cell Format > Currency > Symbol: Euro
    Peter

  • XML Publisher Template Builder for Adobe Acrobat

    Need a XML Publisher Template Builder for adobe acrobat as is available for word.

    I did so.. however, publisher is not able to substitute xsl syntax by the actual value..
    eg.
    i had a <?X_PO_NUM?> in word (either using text field or manually writing this..) and i converted the word doc into pdf using third party s/w..
    when i uploaded this template pdf with sample data file using xmlp admin repsonsibility, and tried to preview the output,
    substitution is not happening..
    the requirement here is, to have some input fields in final PDF output for which report-users should be able to type values in.
    for which I assume initial template has to be in PDF itself..
    any ideas or pointers will be much appreciated..

  • Display Currency symbol with value in ALV Report

    Hi Experts,
    I need to display currency symbol with value in ALV Report like if currency type is dollar then $200.
    Here I am using field catalog type slis_t_fieldcat_alv and suing field merge catalog FM: 'REUSE_ALV_FIELDCATALOG_MERGE'
    I tried like this
        IF <fs_fieldcat>-fieldname = 'STPRS'.
          <fs_fieldcat>-seltext_s = 'Std Cost '.
          <fs_fieldcat>-seltext_m = 'Std Cost'.
          <fs_fieldcat>-seltext_l = 'Std Cost '
           <fs_fieldcat>-tabname = 'MBEW'.
          <fs_fieldcat>-ctabname = 'T001'.
          <fs_fieldcat>-cfieldname ='WAERS'.
          <fs_fieldcat>-datatype = 'CURR'.
        ENDIF.
    Please any one can suggest the solution for this.
    Advance Thanks.
    Regards,
    Bala Achari

    Hİ,
    Check this link.
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=24379571
    Take care.
    Çağatay

  • Report Based on XML Data Template is timing out

    Hi there,
    i have an XML publisher report based on an XML data template that i've written. The report is working fine except when there is huge data that is supposed to come out, its timing out. Ive set the db_fetch_size parameter to 20 and scalable_mode to on but its still timing out.
    If anyone has a solutiom or a thought it would be much appreciated.
    Thanks.

    Thanks for the reply.
    Well when i'm opening the report , i wait for about 15 seconds then 'Page Cannot be Displayed' appears on my browser. I'm having this case only when i'm expecting huge data. By huge data i mean that the report gets informations about a deal, when the deal has 10 categories the report runs fine, but when i add all catgories, about 1000, it gives me the 'Page cannot be displayed' error. I'm guessing its a time out issue since i've set the scalable_mode parameter to on. Any thoughts ???

  • Multiple Currency Payroll Payments for one Employee

    Hello,
    We have a requirement of paying one employee in multiple currencies (i.e in Local currency and USD). This means that such employee has two bank accounts, i.e. Local Currency Account and USD Account.
    The costing of payroll costs is done in the local currency. Does anyone know any standard procedure for this?
    P.S we are using Global Legislation
    Regards,
    Salman

    Hi Salman,
    Have you tried this from Element Define window. There is functionality for Input and Output currency.
    Hope it could meet your requirement.
    Thanks
    AshokP

  • Multiple currency in PO/MIRO

    Hi Friends,
    In the PO, the vendor is from Japan, so the document currency is in Japan. But the freight condition currency is in MYR which we dont want to convert into JPY. Here the system converts all the condition type currencies into document corrency i.e. JPY in this case. After Goods Receipt, when I see the FI document in MIGO T-Code, all the posting
    comes in JPY and when i change the postings into local currency i.e. into MYR, there is a difference of RM0.02(2 sens) in the posting. As the freight condition value is in MYR, we dont want system to change it to JPY as freight charge not relevant for PO printout. Because os the conversion factor, a podting having difference of 2 sens is done.
    At the time of Invoice Posting through MIRO T-Code, all the charges are converted into JPY irrespective of their actual currency mentioned in the PO. Inside "Simulation" tab I can see the delivery/material cost in only 2 currencies i.e. JPY and MYR. I cant see the currency in USD as one of my delivery charge in PO is in USD. My invoice comes in respective  urrencies as per PO. Please advise how to post invoice in multiple currencies as per the currency mentioned in PO.
    Thanks & Regards
    Satya

    Hi,
    Document currency of PO will be single and all the condition type values are converted to the document currency.
    For condition types where currency conversion is required, please goto config (T code M/06), select the condition type and under Control data 2 tab, tick currency conversion. This will remove rounding of errors in case of multiple currecies.
    Hope this info helps
    Priyadarshi

Maybe you are looking for