Currency Symebol in output Report

Hi,
We have a requirement for showing currency symbol in out put of the report.I need a report for values of revenue with indian currency symbol while displaying the output.
Thanks in advance.

Hi Lingaraj,
go through the below SAP NOTE
Suggested by SAP in OSS 1503523
Solution
We recommend to postpone usage of the new character INDIAN RUPEE SIGN until the character and its code point have been formally released with Unicode standard 6.0.
When you decide to use INDIAN RUPEE SIGN before it is formally released, make sure, that your input methods and fonts use the code point U-20B9 for the INDIAN RUPEE SIGN and that the official layout of the INDIAN RUPEE SIGN is used.
Using a different code point for the INDIAN RUPEE SIGN will cause future problems with data consistency, data communication and searching.
SAP currently does not provide input methods or fonts which cover the INDIAN RUPEE SIGN nor has any suggestions, which input methods or fonts can be used.
INDIAN RUPEE SIGN cannot be used in Non-Unicode SAP systems.
Regards
KP

Similar Messages

  • Currency in standard SAP Reports

    Hi Experts,
    Where can I find the currency translation settings for standard SAP reports (From Database currency to List Currency)? While I am executing one of the reports, I am finding that the system is translating the currency and displaying the output.
    Where can I find these settings?
    Regards
    Varun

    Hello Varun R
    Some  Reports such as S_ALR_87013019 are based on reporting table "RWCOOM".
    The special design of this reporting table is that it does not use the "report currency"
    to from reporting table "CCSS".
    As a consequence this "report currency" cannot be used in reports using RWCOOM.
    If you check the report definition of report S_ALR_87013019 or toher S_ALR*
    in transaction GRR3 (library 6O2, report 6OBU-001)  you see that the characteristic
    "currency type" with value "20" is used in the general data selection.
    This leads to the behaviour of the system always to display the values in controlling area currency.
    Even if you set RPO0 to a different currency this has no influence as the report definition in this case is "hard coded".
    In order now to have the values displayed in another currency (such as object currency) please copy this report into customer space and change the general data selection on characteristic "currency type" from "20" to "10".
    Afterwards you should be able to display the values in object currency.#
    I hope this helps
    Ger

  • Currency Conversion in WebI Report

    Hi All:
    Need your help in currency conversions using WebI Report.
    Current Scenario: 
        Currency conversions are currently achieved at BEx Query Designer level where target currency is determined through a Selection Variable.
    Proposed Solution:
       As per the Business proposal, BW will be publishing the data to Terradata; a universe will be built on Terradata and a WebI report will be based on this universe.
    Question:
       How can this type of currency translation be achieved in WebI Based  Report?

    Hi,
    Current Scenario:
    Currency conversions are currently achieved at BEx Query Designer level where target currency is determined through a Selection Variable.
    Proposed Solution:
    As per the Business proposal, BW will be publishing the data to Terradata; a universe will be built on Terradata and a WebI report will be based on this universe.
    Question:
    How can this type of currency translation be achieved in WebI Based Report?
    >> You would use the same logic by using a variable in the BEx query designer and Web Intelligence would then leverage the variable from the BEx query.
    ingo

  • BI Publisher -RTF Template issue: Output report not maintaining text with bullets and numberings.

    Hi All,
    I am currently working with generating reports using BI Publisher. My issue is that when I will preview the output(in PDF and RTF) format's  of the newly created template, then, if the data coming from DB have some bullets or numbering, then the BI publisher output will ignore the same and will show the complete data as one single line.
    For example if the data in the DB Field is like below:
    The XYZ has the below sub-parts:
    ABC : This again has two parts:
    abc1
    abc2
    CDE
    FGH
    Then  this data will appear as below in the BI Publisher output report's:
    The XYZ has the below sub-parts: •   ABC : This again has two parts:  o     abc1  o   abc2   •    CDE    •   FGH
    I want the format of the data (with bullets and number's) should be maintained in the BI Publisher Report as well, but I am unable to find any solution for the same.
    Any help on the same is much appreciated.
    Deep Bhoj

    in your query will u get all the columns always null when column1 is null
    in your template for each group u can write like below
    think G_1 as group in your xml
    <?for-each:G_1[COLUMN1!='']?><?COLUMN1?><?COMMENTS?><?end for each?>
    or if u are not sure u get null in both places every time u can write like below
    <?for-each:G_1[COLUMN1!='' and COMMENTS!='']?><?COLUMN1?><?COMMENTS?><?end for each?>

  • XML publisher output report in excel format

    Hi
    I have created reports using XML Publisher, the default output preview format was PDF. While submitting the program, in the layout, I changed the format to EXCEL,it give me output in Excel. Now I need to send the output report as an attachment through e-mail.For this I have used a UNIX shell script to send the mail using uuencode and mailx commands.
    I have fetched the name of the report from table using the following command.
    SELECT file_name
    FROM FND_CONC_REQ_OUTPUTS
    WHERE FCR.CONCURRENT_REQUEST_ID = p_req_id;
    The name of the report is : XXBG_PO_IFACE_SO_RPT_8556321_1.EXCEL
    Following is the command to send the e-mail.
    (cat $MAIL_BODY; uuencode XXBG_PO_IFACE_SO_RPT_8556321_1.EXCEL XXBG_PO_RPT.xls) | mailx -m -s "$MAIL_SUBJECT" $mail_id
    I am receiving the mail with the attachement, but when i am trying to open the attachement it is throwing an error and nothing is displayed in the excel sheet.
    Note: When I am sending the mail,in similar way, with 'PDF' attachement it is perfectly fine and the attachement is opening correctly.
    Please help me.
    Thanks in advance,
    Madhu kumar

    Hi schavali,
    The error message is as follows
    Microsoft Office Excel cannot access the file "https://xxxxxxx/Inbox/XXBG_PO_RPT.xls.
    There are several possible reasons:
    --The file path doesnot exist.
    --The file is being used by another program.
    --The workbook you are trying to save has the same name as a currently open workbook.
    After throwing the error, it open s a balck excel sheet.
    Hi hsawwan,
    I have gone through the thread. I am able to see the report when I click the output tab on the concurrent request screen.
    But the problem is, when I am sending the output report as an excel attachment then I am facing the problem.
    There might be some problem with uuenocde or mailx command.
    Thanks
    Madhu Kumar.

  • Can I put a SQL query into a bind variable and then use it to output report

    Hi,
    Can I put a SQL query into a bind variable and then use it to output report?
    I want to create a report and an item "text area" (say P1_TEXT) which can let user to input a SQL query(they are all technical users and knows SQL very well). Then, I use a bind variable (that text area) to store the SQL statement. Then, I add a submit button and I want to use the following to output the report:
    select * from (:P1_TEXT);
    Do you think it is possible to do that? Any known limitations for APEX in this area?
    Thanks a lot,
    Angela

    You can, but make sure it's what you really want to do. Make sure you are VERY familiar with SQL Injection. Most people who know what it is, go out of their way to prevent SQL Injection. You're going out of your way to allow it.
    You can try using &P1_TEXT. instead of bind variable syntax. Bind variables are one of the best ways to prevent SQL Injection, which is why it's not working for you.
    Once again, I strongly urge you to consider the implications of your app, but this suggestion should get it working.
    Tyler

  • Is it possible to embed a pdf attachment to a pdf output report?

    Hi community,
    The question is a little bit complex, cause we do not know if belongs to Reports or tu E-Business-Suite. Our development Team has just created a report for a list of purchased/sold goods, which output is a PDF file.
    On the other hand, the customer, is attaching a PDF (an agreement) to the items included in the Sales Orders in the Sales Order Window in the Order Management Responsibility. The customer wants that when they prints the report, the agrreement attached to each item in the sales order, will be printed too.
    Is there any way to include the .pdf attachments in a .pdf's output report?
    Thanks

    1. This is not a OAF question, reports forum would be a better place to post the query.
    2. I had the same requirement of merging multiple PDFs in oracle Quoting, what I did was get a third party code from net which joins two PDFs.
    So, you need to do this
    1. Have a request set, with two conc programs
    2. Program one in the request set would generate the PDF report as it is doing now
    3. Program two in the request set would go back to the order, see if there is a attachment, if yes, pulls it, calls the third party java PDF merge program, merges both the PDFs and then generate the output, which is a consolidated PDF/
    Thanks
    Tapash

  • Application Diagnostics takes long long time to generate output report

    Hello All
    Please give me suggestion how can I improve performance of Application Diagnostics. It takes long long time to generate output report for a single transaction, i.e. Invoice.
    Thanks
    Makshud

    Do you have the statistics collected up to date?
    Please make sure you have applied the latest patch as per these docs.
    E-Business Suite Diagnostics Installation Guide [ID 167000.1]
    E-Business Suite Diagnostic Tools FAQ and Troubleshooting Guide for Release 11i and R12 [ID 235307.1]
    If you still have any performance issues when running the tool, I would suggest you log a SR.
    Thanks,
    Hussein

  • XML Bursting Output Report

    I am new to xml publisher and bursting.
    I have created a tax invoice that i can generate and print using XML Publisher.
    i now need to distribute the report - i have the option to email, fax or print.
    Unfortunately due to the nature of my clients infrastructure i cannot print directly to a printer so i resorted to creating a file on the linux server.
    This all works fine - i get the required number of emailed reports , faxed reports and filesystem reports but the output report doesn't generate.. It reckons i have a duplicate file reference somewhere.. and therefore the concurrent manager job completets with error..
    Can anyone help please..
    Cheers
    This is the error:
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    duplicate entry: /Remittance_Advice20058652.pdf
    java.util.zip.ZipException: duplicate entry: /Remittance_Advice20058652.pdf
    This is my bursting file:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/RCTI/G_HEADER">
    <xapi:delivery>
    <xapi:email id="123" server="<servername>" port="25" from="${RA_OFFICER}" reply-to ="${RA_OFFICER}">
    <xapi:message id="123" to="${C_DELIVERY_DETAILS}" cc="${CC_EMAIL}" attachment="true" subject="Remmitance Advice ${C_DOC_NUMBER} ${C_DOC_DATE} ">EFT REMITTANCE ADVICE to PAYEE
    Please find attached your EFT remittance advice for payments credited to your account.
    </xapi:message>
    </xapi:email>
    <xapi:filesystem id="file" output="/oratmp/RCTI/RCTI_${C_VENDOR_NAME}_${C_DOC_NUMBER}.pdf"/>
    </xapi:delivery>
    <xapi:document output-type="pdf" delivery="file">
    <xapi:template type="xsl-fo" location="/oratmp/TEMPLATE_PROD.xsl" filter=".//G_HEADER[C_DELIVERY_METHOD='']" >
    </xapi:template>
    </xapi:document>
    <xapi:document output="Remittance_Advice${C_DOC_NUMBER}" output-type="pdf" delivery="123">
    <xapi:template type="xsl-fo" location="/oratmp/TEMPLATE_PROD.xsl" filter=".//G_HEADER[C_DELIVERY_METHOD!='']" >
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Edited by: Lisa from Aus on 15/09/2010 19:43

    Hi Lisa,
    Thanks but it didn't solve my problem - so i went back to a couple previous versions - one that just emailed and one that just created the file and they both worked fine.Have you applied the patch?
    So i used the email only one and appended my filtering restriction to the end of the command and even though the reports were emailed correctly the bursting report failed to output with the duplicate entry error.
    Is the syntax of my filter wrong?Sorry, cannot be of much help -- Others with similar experience may help (or you may log a SR).
    Thanks,
    Hussein

  • Setting html output report type.

    Hi,
    I want to have my own title in a html output report type. Does anyone know how to set the title in a blue window line? Now it seems that BI Publisher puts the title in a somehow arbitrary way and I cannot control what it places there.
    Thanks,
    Dmitri.

    This might help:
    http://www.neophoto.com/uploaded_html/template_writers_guide/x143.html
    Thanks, Naveen.

  • Currency fields in Salesforce reports display as "[Record]" in Power Query

    Currency fields in Salesforce reports display as [Record] in excel when using power query.    Can include screenshots due to forum rules.

    Thanks - that helped me figure it out.
    IF you right click on the source and click edit to get into edit mode on the query, then you have the option to expand the record.  Doing this and saving does the trick.  
    Will try and post some screenshots later if others run into this.

  • Change currency in cost center report - possible?

    Hi all!
    I have a question regarding currency in cost center report (transaction s_alr_87013611).
    I have created one controlling area with currency SEK. I have allocated several company codes to this controlling area, for example Sweden, France,  Germany etc. I have also created different cost centers and allocated them to the company codes. All cost centers in ever company code have the same currency allocated as for the company code. For Germany currency EUR is allocated to the cost center, to the company code but SEK is allocated to controlling area.
    When I run cost center report reporting currency is SEK. Is there a possibility to change the settings in the report to view cost center currency instead?
    Many thanks in advance!
    BR Åsa

    Hi,
    Yes, it's possible. Use RPC0 transaction to set the currency of the report to object currency.
    Regards,
    Eli

  • Subject: Displaying key figures without currency unit in BEX reports

    Hello,
    Is it possible to display key figures without currency unit in BEx reports? For example; Material Costs 1000 EUR
    should be shown as 1000. Currency unit EUR and also scaling factor (*1000 EUR) does not interest us.
    When we use display options in query properties, we just see an option of displaying key figures with/without scaling factors, which does not solve our problem.
    Thanks for your reply.
    Regards,
    Nuran Adal

    Hi Eugene,
    thank you very much for your quick reply. We have very detailed reports with min. 10 columns, I should have defined 10 more formula columns to realize this (NODIM), but anyway there is no other way to do this, am I right?
    Best Regards,
    Nuran

  • Remove currency symbol in a report

    Hi
    Can anyone tell me how to remove the currency symbol from a report e.g. an invoice.
    Regards,
    Henrik Fladkjæ

    Hello Henrik,
    You can use the Database textfield other than the System Variable field to avoid the Currency symbol displayed in the report.  Hope this will help.

  • Outputting Reports OP into WP docs

    This probably belongs in another Forum but here goes.
    We're running Forms and Reports v 6.0.8.11.3 and Windows 2003 SE v 5.2.3790 Build 3790.
    I have a form that passes a lexical parameter to an Oracle Report. After viewing in 'Preview' mode, the user 'Distributes' to serveral sources including a Word document. When the user attempts to edit the doc, all of the data seems to be placed into a 'Cell' or 'Table' and the formatting of the report is lost.
    Can anyone point me to the correct manual or does anyone have experience outputing Report output in WP docs meant for editing?
    Thanks,
    Ron

    Hi Jules,
    You need a user with XDBADMIN rights to access the WebDav. Once you have access, you can open the URL as webfolder (in IE).
    Regards,
    Christian

Maybe you are looking for

  • Unable to get HD Wide Screen 16:9 to fill the screen on TV.

    12/20/08 Problem: I am not able to get HD Wide Screen 16:9 to fill the screen on TV. Leaves dark bands on the top and bottom of picture. What I'm working with: Mac Pro Quad-Core Intel Xeon Processors with 2GB Memory soon to be 6GB & 30 inch screen. Q

  • Time Machine can't back-up because MBP overheats and shuts down

    I LOVE my 2006 MBP! However, almost since the first time I tried making movies on it, it has crashed. Just suddenly went black. Thankfully, I've always (knock on wood!) been able to re-start when this happens. This would also occur when I set it up t

  • Help!: jTDS is not working on j2sdkee1.4!

    Hello there! I'm working with Win2k sp4, MS-Sql Server 7 and j2ee sdk 1.4 (the newest release). I'm trying to use the jTDS JDBC driver to access a MSSql database. This is the connection pool configuration: <jdbc-connection-pool connection-validation-

  • Calibrating: Improve the quality and accuracy of your images

    The Sprout Workspace depends on the alignment of the HP Touch Mat and the projected screen on the touch mat. This alignment is calibrated during initial setup and can also be recalibrated at any time you choose. During calibration, Sprout detects the

  • Problem STMS:  "Copying Import Queue SID "

    Hello I have a quetion, yesterday we changed the name server of production, now  when I want to make the tranports  I got this message Copying Import Queue <SID>, I had checked the configuration of stms, RFCs  and I did the test and these are ok In t