How to accept multiple languages in a single report.

Hi,
We have a Web I report built based on universe(Oracle DB- Utf-8 codepage), In Data base tables there is a data with multiple languages. But when I run Web I report it is showing the data which is in english but data other than english is showing inverted "?". Could any one please suggest me how the data to be supported in all languages for the Web I report.
Thanks,
Mallareddy D.

You should be creating a universe using the table with filter utilizing a column which accepts a parameter value of language and shows the data in that specific language. This concept is already used in SAP standard audit universe which accepts language for any query and shows the data in that language.. The logic for the derived column for the table should look something like below Table.LANGUAGE = @Prompt(Select language)

Similar Messages

  • How to print multiple copies of a single report(label) based on a variable

    I have a crystal report v.9 linked to an excel file with multiple rows of information.  Each row contains the label information and one column has the quanity of each label to print.  What feature in crystal do I use and what is the command I will need?   The information changes on a daily basis so I need a formula. Thanks in advance.
    Kurt

    There have been a few posts that have answered this in the past.  (I know because I answered them! :-> )  You might want to search for them.
    But basically, you want to do something like this in an SQL Command data source (MS SQL):
    declare @loop int;
    set @loop = 1;
      -- copy table structure (or otherwise create a temp table):
    select * into #temp from table where numLabels < 0 and numLabels > 0;
    while @loop < 20 -- or whatever a maximum number might reasonably be
    begin
      insert into #temp select * from table where numLabels >= @loop
      set @loop - @loop + 1
    end
    select * from #temp order by name, address  -- something to keep copies of labels together
    HTH,
    Carl

  • How to implement textarea/text box to accept multiple languages

    Hi,
    We have a requirement that we need to have text area/text box on screen to accept multiple languages like (Spanish and russian) that means user can able to enter their text data either in any language like english,russian and spanish(It should be possible to enter the comments in russian and spanish languages). Is it possible to implement in java/j2ee?, If yes kindly provide us solution details. Any Help is highly appreciated.

    What exactly doesn't work? No matter the (spoken) language - its still only text data. The one thing you need to look out for is in no way specific to Java/JEE and that is that you employ proper character encoding and fonts to be able to display the language specific characters. If you don't know much or anything about character encoding, I suggest you research that. Start here:
    http://www.joelonsoftware.com/articles/Unicode.html
    BTW: its a bit of a silly question, don't you agree? No - you can only create English applications using Java! What a world that would be.

  • How to accept multiple attachments on selection screen?

    Hi All,
    I need to know how to accept multiple attachments on selection screen and send them as email to external system (outlook).
    Basically, my req is to send a common email with attachments to certain users. These users are displayed in ALV. User will select ALL or specific user from ALV and send an email with message entered on selection screen.
    I used text editor control to input message body. I need to know how to accept attachments and send them.
    Appreciate any inputs.
    Thanks,
    SKJ

    SAP uses a nifty little button called 'Object Services' on ME23N (top left) which you can use to attach documents to business objects.
    http://help.sap.com/saphelp_nw70/helpdata/EN/be/3fe63659241157e10000009b38f889/frameset.htm
    It's a complicated way of doing it but might give you extra functionality in the long run.

  • Urgent ! How to add multiple JToolBars in a single JFrame

    How to implement multiple JToolBars in a single JFrame
    or what is the concept behind floating toolBars.If anybody can help me ,Thisis very urgent

    If you insist on multiple toolbars, use the following code:
    JToolBar tb1 = new JToolBar();
    //add stuff
    JToolBar tb2 = new JToolBar();
    //add stuff
    //put the toolbars on the top of the window
    JPanel toolbars = new JPanel(new BorderLayout());
    toolbars.add(tb1, BorderLayout.NORTH);
    toolbars.add(tb2, BorderLayout.CENTER);
    getContentPane().add(toolbars, BorderLayout.NORTH);Stephen

  • How to set multiple styles on a single component in flex ?

    Hi ,
    I would like to know how to set multiple styles on a single component in flex.
    Can anyone give me an example as to how to set multiple styles for a single component ?
    Thanks ,
    Regards,
    Ajantha

    Hi tuliptaurus,
    You can setStyleName property for chnaging the external css dynamically by using the setStyle() method ...
    btn.setStyle("styleName","blendButtonSkinOther");
    You can change the external css by using the styleaName property with setStyle method..the line in blue..where blendButtonSkinOther is another css class..
    blendButtonSkin {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    blendButtonSkinOther {
        fontFamily: Arial;
        fontSize: 11;
        color: #F1F1F1;
        textRollOverColor: #F1F1F1;
        textSelectedColor: #F1F1F1;
        horizontal-align:center;
        width:150;
        height:30;
        cornerRadius:5;
        upSkin:ClassReference('assets.skins.BlendButtonSkin');
        downSkin:ClassReference('assets.skins.BlendButtonSkin');
        overSkin:ClassReference('assets.skins.BlendButtonSkin');
        disabledSkin:ClassReference('assets.skins.BlendButtonSkin');
        selected-up-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-down-skin: ClassReference('assets.skins.BlendButtonSkin');
        selected-over-skin: ClassReference('assets.skins.BlendButtonSkin');
    Thanks,
    Bhasker Chari

  • How to delete multiple data domains with single step ?

    how to delete multiple data domains with single step ?

    You can go to your Endeca-Server domain home e.g.($WEBLOGIC-HOME$/user_projects/domains/endeca_server_domain/EndecaServer/bin)
    run
    [HOST]$ ./endeca-cmd.sh list-dd
    default is enabled.
    GettingStarted is enabled.
    endeca is enabled.
    BikeStoreTest is enabled.
    create a new file from the output just with the domains that you want to delete and then create a loop
    [HOST]$ vi delete-dd.list
    default
    GettingStarted
    endeca
    BikeStoreTest
    [HOST]$ for i in $(cat delete-dd.list); do; ./endeca-cmd.sh delete-dd $i; done
    Remember that this can not be undone, unless you have a backup.

  • Does anyone know how to add multiple pictures to a single frame in iMovie?

    Does anyone know how to add multiple pictures to a single frame in iMovie?

    Maybe you would be better off posting this in the iPhoto or iDVD categories of the forums.
    http://discussions.apple.com/category.jspa?categoryID=143
    http://discussions.apple.com/category.jspa?categoryID=128
    The answer to your question depends on what you ant to do with the DVD.
    Do you want a DVD menu, slide show etc.
    iPhoto will allow you to burn straight to a DVD. Just select the album you want to burn then go to share in the tool bar and select Burn.

  • How to insert multiple records in a single query

    Dear all,
    Can you please tell
    how to insert multiple records in a single query ??

    INSERT INTO table_name (column_1, column_2) VALUES ('value_A', 'value_B')OR
    INSERT INTO table_name
    (column_1, column_2)
    SELECT 'value_A', 'value_B' FROM DUAL
    UNION ALL
    SELECT 'value_C', 'value_D' FROM DUAL
    ;Edited by: Benton on Nov 9, 2010 1:59 PM

  • How to call multiple strus actions froma single jsp

    how to call multiple strus actions froma single jsp, and that actions should be automatically called pls help me
    Thanks in advance

    how to call multiple strus actions froma single jsp, and that actions should be automatically called pls help me
    Thanks in advance

  • How to support multiple languages on logon screen (Using EP)?

    Hi Everyone,
       Just i want to know, how to support multiple languages in Logon Screen Using EP?
    Thanks & regards,
    Venkatesh.K.

    Hi,
    Transac SMLT :
    http://help.sap.com/saphelp_nw2004s/helpdata/en/62/163d38c2113265e10000009b38f889/frameset.htm
    Import de language:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/62/163d38c2113265e10000009b38f889/frameset.htm
    Hope it help's

  • How to support multiple languages on logon screen in EP?

    Hi All,
       Just i want to know,  how to support multiple languages in logon screen in EP?

    Hi,
    Logon screen can be customized. This .<a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5232">url</a> might help you do this.
    Please check out this <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/5232">blog</a> on language display of logon screen.
    Another <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/3680">blog</a>.
    <a href="https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/1436">Another</a> one here.
    Regards,
    Sujana

  • How to install multiple language version of photoshop within creative cloud?

    How to install multiple language version of photoshop within creative cloud?

    You should contact Adobe Support by phone or by chat and get their help in resolving your problems.
    Phone support | Orders, returns exchanges
    http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    For the link below click the Still Need Help? option in the blue area at the bottom and choose the chat option...
    Creative Cloud support (all Creative Cloud customer service issues)
    http://helpx.adobe.com/x-productkb/global/service-ccm.html ( http://adobe.ly/19llvMN )

  • How to use multiple tape drive for single filesystem on single client.

    Hello All.
    I want to backup single filesystem with multiple tape drive.
    Incase of Symantec veritas netbackup "NEW_STREAM" for multi-stream backup.
    Backup client has a  single backup filesystem like /data1  directory with 4 LTO6 drives.
    /data1 directory doesn't have a sub-direcotry, just present a files.
    If /data1 directory has a sub-directory like /data1/aaa, /data1/bbb, /data1/ccc , Is it possible to use multiple drives?
    Please anybody answer the questions.
    Thanks advanced.

    See how to use multiple tape drive from single client when I want to backup single filesystem?

  • How to set multiple operating units in before report trigger

    hi all
    can any one help me out in getting clear in how to set multiple operating units in before report trigger in oracle report.
    as we set single operating unit (mo_global.set_policy.context('S',81); as 81 is my operating unit).then who to set for multiple operating unit at run time.

    Sounds like eBusiness Suite, right? Better ask this in the appropriate forum.

Maybe you are looking for