Display Arabic numbers in dashboard

Hi,
I want to display year in Arabic format in drop down box component of Xcelsius 2008 SP2.
For example: ٢٠١٠, ٢٠١١ ...
Is it possible?
Thanks,
Rakesh
Edited by: Rakesh Khandelwal on Feb 16, 2012 6:15 PM

Three possible way arounds may be used.
It seems your are using hard coded values in combo. Just download and install Phonetic Keyboard software and maintain your values in respective column and map it to combo.  After installation of this software you will find a language toolbar attached with windows clock at lower right bottom, just check phonetic keyboard option.
two other possible suggestions may be:
1) Change your regional & language settings of windows to Arabic, but it will change your over windows behaviour.
2) Change character set of your database it will behave accordingly when you will access data on any platform.
Regards,
SA

Similar Messages

  • ARABIC NUMBERS

    HI
    I HAVE PROBLEM IN ORACLE FORMS 10g.
    I SWITCHED THE NLS_LANG ON THE APPLICATION SERVER TO ARABIC_AMERICA.AR8MSWIN1256 , THE PROBLEM IS I HAVE NUMBERS DISPLAYED IN ARABIC-INDIAN REPRESENTATION WHICH IS WRONG. I WANT NUBMERS TO BE DISPLAYED IN ENGLISH
    FOR EXAMPLE: 1,2,3,4,5,......
    IS IT AN APPLICATION SERVER PROBLEM OR A FONT PROBLEM?
    I TRIED TO CHANGE THE FONT TO TAHOMA, AND ARIAL BUT IT DIDN'T WORK
    PLEASE ANY HELP WOULD BE APPRECIATED
    THANKS

    some thing like
    DecimalFormat dFormat = (DecimalFormat)NumberFormat.getInstance( new Locale("ar", "IQ") );
    DecimalFormatSymbols dfSymbols = dFormat.getDecimalFormatSymbols();
    // i think arabic numbers starts at Ux0660
    dfSymbols.setZeroDigit( '\u0660' );
    dFormat.setDecimalFormatSymbols( dfSymbols );
    System.out.println(dFormat.format( 1111.89942));regards,

  • Arabic numbers problem with Adobe PDF

    i'm using crystal reports to display a report for an asp.net web application. I have some numbers displayed in this report. These numbers are displayed in this report in arabic format and this is ok. When i try to export report data to Adobe PDF I have the arabic numbers displayed in english format!!
    Can anyone help me to solve this issue?
      Thanks and Best Regards

    Is it 32 or 64-bit. If it is 64-bit, the print driver for AA7 does not work on that system. You can install AA7 except for the printer for a 64-bit system. In that case, you will have to install another PS printer (like the HP 4500 PS) with the port as File:. I also suggest you change the name to be the Adobe PDF printer that you are substituting for. You then print to file and open the file in Distiller to complete the PDF creation (watched folders are also possible from Distiller to automate the process somewhat). You have to provide a folder as well as the file name when you print, such as "C:\adobeapps\test.ps." Then run test.ps through Distiller. You will have to follow the extra steps to create PDFs with AA7.

  • How to display page numbers in report

    hi all,
    i would like to know how to display page numbers in this format " 1 of 5" in the report.
    Any help would be much appreciated.
    thanks
    seema

    Hi,
    Check this too...
    Page No. in ALV output
    If you query is solved, kindly close the thread.
    Regards,
    Anjali
    Message was edited by: Anjali Devi Vishwanathan

  • Arabic numbers issue in XML Report

    Dear Experts,
    I have one arabic xml report, when i ran the report it showing english numbers, instead of arabic numbers.But in the output i should get arabic numbers.
    Please find the attachment of xml template and output.
    could any one help me on this, its urgent.
    Thanks in advance.
    Best Regards
    Amar

    Dear Experts,
    I have one arabic xml report, when i ran the report it showing english numbers, instead of arabic numbers.But in the output i should get arabic numbers.
    Please find the attachment of xml template and output.
    could any one help me on this, its urgent.
    Thanks in advance.
    Best Regards
    Amar

  • I want to run jasper Report as pdf to display arabic letter

    i want to run jasper Report as pdf to display arabic letter butv when i use
    byte[] bytes =JasperRunManager.runReportToPdf(report,parameters, conn); display ?????
    i hope anybody to help me
    thanks
    Edited by: Amr Ahmed on May 2, 2011 2:08 AM

    DECLARE
    vParamList PARAMLIST;
    BEGIN
    vParamList:=GET_PARAMETER_LIST('MyRep');
    IF NOT ID_NULL(vParamList) THEN
    DESTROY_PARAMETER_LIST(vParamList);
    END IF;
    vParamList:=CREATE_PARAMETER_LIST('MyRep');
    SET_REPORT_OBJECT_PROPERTY('report_path\emp_rep_def',REPORT_DESFORMAT,'PDF');
    RUN_PRODUCT(REPORTS,'report_path\emp_rep_def',ASYNCHRONOUS,RUNTIME,FILESYSTEM,vParamList,NULL);
    END;

  • How to display Page numbers in XMLreport(on PDF)

    hi all,
    we have a requirement where we need to display page numbers(e.g.page 1 of 10),on an XML report.
    can anybody suggest me the solution.

    Hi,
    Check this too...
    Page No. in ALV output
    If you query is solved, kindly close the thread.
    Regards,
    Anjali
    Message was edited by: Anjali Devi Vishwanathan

  • Help with display of numbers

    First of all I have to say the tutorials on this site are extremely helpful. My instructor wants all our java code written as Object Oriented and when I did a search on here for Object Oriented it totally helped out. Now I just need help with the display of numbers, my code works perfectly fine except that the number has wayyyyyyyyyyy to many decimal points after it. I only wanted two.
    public class Mortgage
         double mtgAmount;
         double mtgTerm;
         double mtgRate;
         double monthPymt;
              public void Amount(double newValue)
                     mtgAmount = newValue;
              public double Amount()
                   return mtgAmount;
              public void Term(double newValue)
                     mtgTerm = newValue;
              public double Term()
                   return mtgTerm;
              public void Rate(double newValue)
                     mtgRate = newValue;
              public double Rate()
                   return mtgRate;
              public void calcmonthPymt(double newValue)                            //(LoanAmt * Rate) / (1- Math.pow(1+Rate,-Term));
                     monthPymt = (newValue);
              public void display()
              System.out.println ("The Mortgage Amount is:" +(Amount( ) * Rate( )) / (1- Math.pow(1+Rate( ),-Term( ))));
         public static void main (String[] args)
                     Mortgage Mortgage1=new Mortgage();
                     Mortgage1.Amount(200000);
                     Mortgage1.Term(360);
                     Mortgage1.Rate(.0575);
                     Mortgage1.display();
    }

    I figured it out, the math is wrong I think but I got everything to display correctly
    import java.io.*;
    import java.text.*;
    import java.text.DecimalFormat;
    public class Mortgage
         double mtgAmount;
         double mtgTerm;
         double mtgRate;
         double monthPymt;
         DecimalFormat money = new DecimalFormat("$0.00");
              public void Amount(double newValue)
                     mtgAmount = newValue;
              public double Amount()
                   return mtgAmount;
              public void Term(double newValue)
                     mtgTerm = newValue;
              public double Term()
                   return mtgTerm;
              public void Rate(double newValue)
                     mtgRate = newValue;
              public double Rate()
                   return mtgRate;
              public void calcmonthPymt(double newValue)                            //(LoanAmt * Rate) / (1- Math.pow(1+Rate,-Term));
                     monthPymt = (newValue);
              public void display()
              monthPymt = (Amount( ) * Rate( )) / (1- Math.pow(1+Rate( ),-Term( )));
              System.out.printf("The payment amount is:$%.2f", monthPymt);
              System.out.println();
         public static void main (String[] args)
                     Mortgage Mortgage1=new Mortgage();
                     Mortgage1.Amount(200000);
                     Mortgage1.Term(360);
                     Mortgage1.Rate(.0575);
                     Mortgage1.display();
    }

  • Arabic Numbers in Adobe Acrobat

    Hi,
    I am filling one form in arabic, the text appears in arabic except the numbers? How can I show arabic numbers in the form (The form was made in Adobe Acrobat Version 9). Thanks

    Thanks everyone. i figured out it already. Fir those who want to know, you just highligt the number , right click and select use arabic numbers.
    Like this:
    Again, Thanks

  • Problem in displaying Arabic Character in Paper Layout

    Hi
    I am facing problem while displaying arabic characters.
    In Web layout i am able to get it by changing the character set to ISO-8259-6.
    I had changed the NLS parameters in registry as suggested in the help. But still i am unable to get. Please can anyone send the brief steps to fix this.
    Thanks in Advance
    Ranganath

    Ranganath,
    That means subsetting is not happening. If subsetting had been successful, you would have seen in "Font properties", the type of font as Type 3 and name of the font as Fx, where x could be 0,1 etc.
    The things I suspect are: 1) your report definition has some other font associated which is not Arial.
    2) You are not specifying correctly the subset information in uifont.ali.
    Open your report in builder and check again, what font you are using to display the data. Open the report in paper layout and click on the data field and check in the font box, the font name that is displayed.
    In your uifont.ali, make sure that under [PDF:Subset] section, you specify (if you are using Arial font)
    Arial = "arial.ttf".
    If you have any other entry regarding Arial in other sections of uifont.ali, comment those for the time being by putting # before those.
    Let me know the font properties after these steps.

  • Problem in displaying arabic

    Hi
    I am having a problem in displaying arabic language. The
    problem is that sentences are not being displayed in correct
    format. That is they are displaying in the format like left to
    right languages and not in the format like right to left languages.
    Someone can suggest me what is the real problem and how can i
    solve it?
    Regards

    Hi
    Even I had the same problem initially. Have you installed the
    arabic fonts in your machines? I assume that you are working on a
    Windows machine. My suggestion would be goto {control panel ->
    Regional language and Settings -> select "Language" tab ->
    select the two checkboxes in that tab}.
    It will ask for the windows XP CD to install those fonts.
    Once its through I hope your problem will be resolved.

  • Displaying Arabic in PDF report generated by Report viewer

    Dear all,
    we are using oracle developer suite 6i 32 bit on oracle database 10gR2 32 bit on windows server 2008.
    we have a problem with displaying Arabic in our pdf file which is generated from the report.
    details are below
    1. our database NLS details are below
    select * from v$nls_parameters
    PARAMETER                                          VALUE
    NLS_LANGUAGE                                       AMERICAN
    NLS_TERRITORY                                      AMERICA
    NLS_CURRENCY                                       $
    NLS_ISO_CURRENCY                                   AMERICA
    NLS_NUMERIC_CHARACTERS                             .,
    NLS_CALENDAR                                       GREGORIAN
    NLS_DATE_FORMAT                                    DD-MON-RR
    NLS_DATE_LANGUAGE                                  AMERICAN
    NLS_CHARACTERSET                                   AR8ISO8859P6
    NLS_SORT                                           BINARY
    NLS_TIME_FORMAT                                    HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT                               DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT                                 HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT                            DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY                                  $
    NLS_NCHAR_CHARACTERSET                             AL16UTF16
    NLS_COMP                                           BINARY
    NLS_LENGTH_SEMANTICS                               BYTE
    NLS_NCHAR_CONV_EXCP                                FALSE
    2. our registry details are below
    NLS_Lang=ARABIC_AMERICA.AR8MSWIN1256
    3. our operating system details are below
    System Language= Arabic Oman
    4. PDF Viewer is Adobe Acrobat Reader
    now here is the problem
    when we generate the report, the report viewer display the report and the Arabic is displayed as expected.
    but when we click on File>Generate to File>PDF
    the file is created, but the contents of the file are in unknown format, it is neither English nor Arabic.
    if we click on File>Generate to File>RTF
    then the Arabic is displayed correctly, but it is not what we need. we need to display it in ADOBE ACROBAT or FOXIT READER for example.
    How to fix it?
    kindly guide us accordingly.
    Regards

    any help please?

  • Problem displaying Arabic characters in PDF using Java APIs

    We are experiencing a problem when attempting to display Arabic characters within a PDF document using the Java APIs.
    The relevant Java code is as follows:
    RTFProcessor processor = new RTFProcessor("example.rtf" );
    processor.setOutput( “example.xsl” );
    processor.setExtractXLIFF(true);
    processor.process();
    ByteArrayOutputStream dataOut = new ByteArrayOutputStream();
    DataProcessor dataProcessor = new DataProcessor();
    dataProcessor.setDataTemplate( example.xdt" );
    if( parameterValues != null && parameterValues.length > 0 )
    setReportParameters( dataProcessor, parameterValues ); // method to set any report parameters from the parameterValues list.
    dataProcessor.setConnection( jdbcConnection );
    dataProcessor.setOutput(dataOut);
    dataProcessor.processData();
    FOProcessor foProcessor = new FOProcessor();
    foProcessor.setLocale( locale );
    foProcessor.setData( new ByteArrayInputStream( dataOut.toByteArray() ) );
    foProcessor.setTemplate( “example.xsl” );
    String xliffFileNameAndPath = getXLIFFFile( “example”, locale );
    if( xliffFileNameAndPath != null )
    foProcessor.setXLIFF( xliffFileNameAndPath );
    foProcessor.setOutput( "example.pdf" );
    foProcessor.setOutputFormat(
    outputFormat == PDF_FORMAT ? FOProcessor.FORMAT_PDF : FOProcessor.FORMAT_HTML );
    foProcessor.generate();
    The method getXLIFFFile( ) gets the relevant XLIFF file for the supplied report locale (if it exists) – the three test files that we used were Italian (example_it_IT.xlf), Spanish (example_es_ES.xlf) and Arabic (example_ar_AE.xlf).
    I imported the following JAR files from the XML Publisher release (version 5.6.2) into my Java application: collections.jar, i18nAPI_v3.jar, versioninfo.jar, xdocore.jar and xmlparserv2.jar.
    The output is OK for all three translations in HTML format, using a charset of UTF-8, and for Italian and Spanish in PDF format. However, the Arabic characters display as question marks in PDF format. The same issue occurs if I stream the output as a byte array straight to the HTTP response rather than save within a file.
    Note that the same RTF, XDT and XLIFF files produce the correct output in both HTML and PDF when executed within XMLPublisher.
    Thank you

    Hi
    I had a similar issue with arabic chars. With PDF layout, chars were appearing properly when preveiwd on local m/c, but as I implement file on server, it was displayed as ?????. I had raised a TAR 5798348.993 with oracle about this and they suggested to apply patch 4028294 Oracle Sourcing J Rollup and then patch 4182914. But later my users changed requirement and i cud not apply the patch to test if it works fine.
    But here, you have suggested that installing fonts would do. Is it really that simple? If yes, dont know what is that patch for which I was told to apply.
    Regards
    Varun

  • Display Arabic text in ScrollPane Component ?

    hello,
    i have RSS reader it's work fine with english but the problem
    is arabic text don't display in RSS reader just english and help
    about to display arabic text in ScrollPane component that component
    reader info from xml file and display it ?
    Regard,
    Crimson

    any idea ?

  • Displaying negative numbers under certain conditions

    I have a Crystal Report which I am developing and need to display positive numbers as negative, but only under certain conditions.  I did not see anything on this type of questions so I decided to join and post it up myself.  This is a transfer report so if the location number entered in the parameter list is the SHIPPING location, I need to display retail, cost, and totals as negative.  Here is the formula which I came up with for ext cost, but it is returning all zeros.  I cannot seperate the to and from locations in the parameters because this report needs to display both in and out of that location.
    if totext({?loc}) = totext({Command.SHIP_FROM}) then ({Command.EXT_COST}*-1)
    Any suggestions?  Appreciate the help!

    Hi Jon,
    If it returns zeroes, then it means that this part of the code fails:
    totext({?loc}) = totext({Command.SHIP_FROM})
    Do you have records where the value entered in the 'loc' prompt matches with records in the SHIP_FROM column on the report?
    See if this helps:
    if totext({?loc},0,"") = totext({Command.SHIP_FROM},0,"") then ({Command.EXT_COST}*-1)
    -Abhilash

Maybe you are looking for

  • Error Message in CRM Interactive Reporting

    When launching the report "Sales Pipeline Analysis", the  error message below appears. All other reports are working fine. Service cannot be reached What has happened? URL http://sapcicrp.pdccons.local:8000/sap/bw/Bex call was terminated because the

  • Xorg 1.6 and xrandr 1.3 dual monitor problems

    First my setup: lspci output: ATI Technologies Inc RV516 [Radeon X1300/X1550 Series] xrandr output: Screen 0: minimum 320 x 200, current 2975 x 1680, maximum 3000 x 1700 DVI-1 connected 1050x1680+0+0 left (normal left inverted right x axis y axis) 43

  • HP Pavilion DV7-4269WM

    i upgrade to windows 8 i have problem with the ati catalyst switchable graphics windows 8 I have no option switchable graphics the screen goes dark and I can not go, and to enter the desktop I have to press the button off (sleep) and so can enter win

  • OCA 6.0.5.35.0

    Hello, who will send me the OCA6.0.5.35.0 Version or give me the information (link) where i can get this OCA version. Udo

  • Wi-Fi not working with IPad 2

    I have Wi-Fi in my house and it works on both of our IPhones and my daughters Kindle and it worked on my IPad until Sunday.  It shows that it is connected to our home Wi-Fi however, we are not able to view anything on the internet.  I am really new t