NW04: WebDynpro in EP6.0, language

Hi,
I have developed a wd application that I have deployed to our portal. My application contains a DateNavigator, among other ui elements. Because we want to support users with different languages I have searched for the opportunity to display the name of each day of the DateNavigator based on the user's language.
When I check the session object attributes in the portal (System administration -> System configuration -> Web Dynpro Console -> About -> Sessions) I can see that the "display language" changes between different ClientUsers.
Does anyone know what this "display language" is based on? Where can I change it? Seemingly, it is not dependent on the portal language in the Personalize menu.
Best regards
Øyvind

Hi,
Thanks.
I checked the link and it says:
The required language can only be displayed if the corresponding resource bundle is available. Otherwise, the Web Dynpro framework follows a given search mechanism to find the most suitable resource bundle.
I think this is my problem, because the application always chooses the language specified in my browser. How can I include a new resource bundle into the wd project?
Regards
Øyvind

Similar Messages

  • Display the webdynpro screen in two languages?

    Hi Gurus,
    I have requirement to display the webdynpro screen in two language(English & Arabic)
    what is the steps involved to achieve this requirement.

    Hallo Dharani,
    NOTE: you cannot switch the session locale of a running Web Dynpro Java application in the same browser window. The only solution is to start a new Web Dynpro application "from scratch" by executing a  new browser instance NOT "browser window" instance. So with Browser -> File menu -> new window you will keep the same session locale even when passing another locale-parameter with the URL-param sap-locale. Sorry, but this is an unsolved restriction in Web Dynpro.
    Regards, Bertram

  • Howrto display the webdynpro screen in two language?

    Hi Gurus,
    I have requirement to display the webdynpro screen in two language(English & Arabic).
    User can switch the language (between English& Arabic)
    Whenevr he chose English all the Text in the webdynpro screen should be in english and if he chose Arabic all the text in the webdynpro screen should be in Arabic.
    what is the steps involved to achieve this requirement.
    Thanks in Advance,
    Dharani

    Hallo Dharani,
    NOTE: you cannot switch the session locale of a running Web Dynpro Java application in the same browser window. The only solution is to start a new Web Dynpro application "from scratch" by executing a  new browser instance NOT "browser window" instance. So with Browser -> File menu -> new window you will keep the same session locale even when passing another locale-parameter with the URL-param sap-locale. Sorry, but this is an unsolved restriction in Web Dynpro.
    Regards, Bertram

  • Webdynpro and EP6 SP2

    Hi
    Can you use webdynpro applications with EP6 SP2 Patch 27 and above. This is running on J2EE 6.20
    Thanks
    Darrell

    Hi,
    It depends on what are you mean by "running"
    You can take WAS 6.40 ,deploy WD app on it, define this WAS 6.40 server on your EP6 SP2 SLD and then make an WD iView in you portal which will consume WD application from WAS 6.40. This means that all "buisness logic" would be performed on WAS 6.40 and you portal will only "view" the application. However you can use portal APIs (like Client Side Eventing) in this scenario.
    On the other side you don't have a WD runtime on WAS 6.20, so you can't deploy WD application on WAS 6.20
    Hope it hepls.
    Victor.

  • Error in ESS WebDynpro ON EP6.0 SP9

    Hello All,
    I'm implemeting ESS Using WebDynpro, I Deployed all related ESS components and it's sucessfully deployed..,
    I checked all my JCo Connections its working fine all connections having the GREEN COLORED.., and SLD is also working sucessfully working, but when i check the iview which is in content provided by SAP when i see the preview of the Overview or any iview Related to ESS it's giving "SERVICE CANNOT BE REACHED" and the error we faced in the j2ee "Causedby:om.sap.dictionary.runtime.DdException:"
    i have done a entry in my service file also .. everything is okay it seems but when i'm tryning to check the iview its giving the "<b>SERVICE CANNOT BE REACHED</b>"
    and the Error "<b>webdynpro/dispatcher/sap.com/pcui_gp~xssutils/XssMenu call was terminated because the corresponding service is not available</b>."
    Could plz help me on this issue
    Thanx in advance...
    Bye

    Hi,
    Did u resolve this. I am also getting the same error.
    Srini

  • Calling Java code from Webdynpro Abap UI

    Hi All,
    Can anybody tell me, How to make calls to java code on a button click from webdynpro ABAP UI ?
    Thanks in Advance.
    Jenish .V. Joy

    Hi Jenish,
    As I am new to WebDynpro for ABAP I could not help you out exactly.But See this link which will help you to create applications in WebDynpro by using ABAP language.
    https://www.sdn.sap.com/irj/sdn/developerareas/abap?
    rid=/library/uuid/02e1fa45-0801-0010-10a0-f1cf47e8c943
    If you get any answer for your question let me know.
    Regards,
    Karthick K Eswaran

  • Calling transaction SECATT from webdynpro UI

    Hi friends,
    I want to open the secatt applications second screen from webdynpro UI. For this I am using the following code on webdynpro side
    CALL METHOD cl_wd_utilities=>construct_wd_url
            EXPORTING
              application_name = 'appname'
            IMPORTING
              out_absolute_url = lv_final_url.
    SPLIT lv_final_url AT 'webdynpro' INTO lv_first_url lv_second_url.
            SPLIT lv_second_url AT 'ztwb_tor' INTO lv_final_url lv_apostrophe.
            CLEAR lv_final_url.
            CONCATENATE  lv_first_url '/gui/sap/its/webgui?TRANSACTION=secatt&RB_TEST_CONFIG=X&RB_ECATT_SCRIPT=&    ECTC_VER-NAME ='  ls_ztwb_test_case-testcase '&okcode=ECOB_SHOW' lv_apostrophe
                INTO lv_final_url.
    CALL METHOD lo_window_manager->create_external_window
            EXPORTING
              url    = lv_final_url
            RECEIVING
              window = lo_window.
          lo_window->open( ).
    But I am still able to open the first screen of secatt and not the second screen with the relevant testcase datails.
    But if I try to open the second screen of SCAT transaction I am able to open it using the following url.
    CONCATENATE  lv_first_url '/gui/sap/its/webgui?TRANSACTION=SCAT&*CATA-ABLNR=' ls_ztwb_test_case-testcase '&okcode=ZEIG' lv_apostrophe
                INTO lv_final_url.
    Is there anything else that I need to pass as parameters in SECATT transaction.
    The program of SCAT transaction is a module pool program.
    The program of secatt transaction is a function pool program.

    Hi Jenish,
    As I am new to WebDynpro for ABAP I could not help you out exactly.But See this link which will help you to create applications in WebDynpro by using ABAP language.
    https://www.sdn.sap.com/irj/sdn/developerareas/abap?
    rid=/library/uuid/02e1fa45-0801-0010-10a0-f1cf47e8c943
    If you get any answer for your question let me know.
    Regards,
    Karthick K Eswaran

  • Webdynpro vs URL - iViews

    Hi all,
    What is the difference between WebDynpro iView and URL iView pointing to a WebDynpro application? any advantages? disadvantages?
    Aviad

    Hi Aviad,
    IMHO, for general WD apps, there'd be not much differences in using a URL iView vs. a WD iView.  However, a WD iView is supposed to provide a better integration between your WD app and the SAP portal environment; plus, you'd have better control of your apps through the application parameters, etc.
    Please refer to this doc
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b07501ec-39a7-2910-0699-f71070d2b245
    where Jochen mentioned one of the main differences between the NW04 WD iViews and the new NW04s WD iViews ("Using NW04s Webdynpro iViews", p.8).  If I understand correctly, this would also be one of the main differences between the URL iViews and the NW04s WD iViews when it comes to running WD apps in a portal environment.
    What do you think?
    Regards,
    Dao

  • Webdynpro vs URL

    Hi all,
    What is the difference between WebDynpro iView and URL iView pointing to a WebDynpro application? any advantages? disadvantages?
    Aviad
    Wrong place to post
    Reposted in portal section
    If someone can delete this post that would be great.
    Sorry for the inconvinence

    Hi Aviad,
    IMHO, for general WD apps, there'd be not much differences in using a URL iView vs. a WD iView.  However, a WD iView is supposed to provide a better integration between your WD app and the SAP portal environment; plus, you'd have better control of your apps through the application parameters, etc.
    Please refer to this doc
    http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b07501ec-39a7-2910-0699-f71070d2b245
    where Jochen mentioned one of the main differences between the NW04 WD iViews and the new NW04s WD iViews ("Using NW04s Webdynpro iViews", p.8).  If I understand correctly, this would also be one of the main differences between the URL iViews and the NW04s WD iViews when it comes to running WD apps in a portal environment.
    What do you think?
    Regards,
    Dao

  • WebDynpro and ABAP

    Hello,
    I have been entrusted with researching WebDynpro Development and the languages that it supports for our Development roadmap team. Going through the many articles in SDN  this is what I understand:
    With the MVC ( Model, View, Controller ) paradigm of UI development for WebDynpro, View and Controller development and enhancement can only be done using Java. Is my understanding correct? In other words the traditional PAI/PBO's of Screen flow logic will now have to be done using Java? Does SAP have any plans of supporting the traditional flow logic within the SAP Netweaver Development studio? or is it imperative for developers to learn Java?
    Based upon the information I gather,  I will be making a recomendation to my Devlopment and Languages Steering committee.
    Any and all input is highly appreciated!
    Thanks,
    Jonathan Nischal.
    Micron Technology Inc.,
    Boise, ID.

    Hi John,
         I can respond to part of your question.  Currently Web Dynpro for Java is the only version available externally to customers.  Web Dynpro for ABAP will be available with NW05.  Web Dynpro for ABAP will still utilize the MVC paradigm and the "connector code" will be in ABAP.
         The latest version of Web Dynpro for ABAP that I was exposed to showed essentially the same end-user functionality that is available in Web Dynrpo for Java.  Of course, the Java version offers some extra development options including developing on the local developer's desktop.  (Rather than on a centeral server with ABAP.)
         Starting in NW05 the choice will really be up to the customer for what works best for them.  Judging from your e-mail, you sound like a primarily ABAP (as opposed to Java) shop.  If that's true, Web Dynpro for ABAP may well
    be the choice for you.
         Hope this helps a bit,
            --Greg

  • Multi language in WDJ

    Hi,
    How can i create a  multi lingue application in web dynpro java.
    Like According to user login i want to change the language of my application. How it can be done.
    Regards,
    H.V.Swathi
    Edited by: H.V Swathi on May 28, 2009 2:22 PM

    Hi,
    Please check the below links to get some idea if they helps.
    Language settings based on user selection
    I18N: How to change language at runtime
    how to set languages for webdynpro object
    dynamic browser language setting
    Regards,
    Charan

  • Parameter Passing from UWL to WebDynpro Component

    Hi Everyone,
    I m having a small problem in parameter passing from the UWL to the Webdynpro component(EP6 SP16).
    The UWL shows a list of shopping carts and I ve configured it such that the Shopping carts open in the webdynpro application. Now the requirement is that I want to pass the shopping cart number from the workitem container and retrieve it in the webdynpro component.
    The only thing that i m able to retrieve is the work-item ID. I ve followed the documentation on help.sap.com but I m not able to figure out how to move ahead with this.The code which i m using to retrive the dynamic parameter is
    String text = WDWebContextAdapter.getWebContextAdapter().getRequestParameter("DynamicParameter");
    Can somebody please help me with this..
    Regards,
    Prathamesh

    Have you looked at this weblog by Ginger Gatling?
    Create new UI's for existing workflow tasks with ABAP Web Dynpro and Universal Worklist!
    Hope this helps.
    Sudha

  • Problems displaying french special characters

    Hello,
    we are developing a multi-lingual WebDynpro application. The languages are set correct and the translation for all parts (portal, xls-files) works fine. Except the correct displaying of WebDynproResourceBundle-files.
    Example:
    We use the french property file with the content:
    Enl\u00c3\u00a8vement
    When calling this value, it displays:
    Enlèvement
    instead of
    Enlèvement
    I already tried to set the jvm system parameter for encoding to latin1 and latin2. But this didn't help.
    Does anybody know, what parameter I have to set to have this french special signs displayed the right way?
    Thank you in advance.
    Matthias

    Yes, I use UTF-8. I think this is the default-value, isn't it?
    They are displayed wrongly, when executing the WebDynpro application. Inside the NWDS editor the display is like that:
    example:
    editor:               language:  browser:     correct
    gel\u00f6
    scht de gelö
    scht ok
    Enl\u00c3\u00a8
    vement fr Enlè
    vement no!
    As you can see, it works fine for german special characters, but not for french, czech and some other languages.
    Thank you

  • Integrated ITS : Session killed but memory still reserved

    Hi,
    I'm a basis guy, new to portal technology.
    Our users launch webdynpro  from EP6 Portal, the HTTP request our SAP ECC6  system (web as kernel 700) with integrated ITS. One of the user session has been lauchned yesterday, and was still running this morning that lead to a memory bottleneck. Because of that no more HTTP user was able to logon to the application server.
    The user session has therefore been killed using transaction sm04, now the users ara able to reach again the server.
    BUT, in transaction SITSPMON I can see that the memory session has not been entirely released, the ITS session still appear (without hte user name)
    same thing in transaction ST02, where 80% of the extended memory is used with ... 3 users connected.
    I have already checked sap note Note 742048 (- Integrated ITS, memory requirement in application server), our memory parameters doesn't seem to be the problem (em/global_area_MB  =1024 ).
    My question : Is there an other way to kill an ITS session ?
    How can I retrieve the used memory ?
    Any useful help would be highly appreciated.
    Best Regards.

    Hi,
    I'm a basis guy, new to portal technology.
    Our users launch webdynpro  from EP6 Portal, the HTTP request our SAP ECC6  system (web as kernel 700) with integrated ITS. One of the user session has been lauchned yesterday, and was still running this morning that lead to a memory bottleneck. Because of that no more HTTP user was able to logon to the application server.
    The user session has therefore been killed using transaction sm04, now the users ara able to reach again the server.
    BUT, in transaction SITSPMON I can see that the memory session has not been entirely released, the ITS session still appear (without hte user name)
    same thing in transaction ST02, where 80% of the extended memory is used with ... 3 users connected.
    I have already checked sap note Note 742048 (- Integrated ITS, memory requirement in application server), our memory parameters doesn't seem to be the problem (em/global_area_MB  =1024 ).
    My question : Is there an other way to kill an ITS session ?
    How can I retrieve the used memory ?
    Any useful help would be highly appreciated.
    Best Regards.

  • EP 6.0 SP2 Extremely flexible UI

    Hi,
    I would like to use KM to build up a "Mini-CMS".
    I found the document "Configure the HTML Collection Renderer for the KM flexible user interface", which is very useful.
    In my Scenario, I would like to have the same behavior (HTML above, KM at the bottom), but with an additional tree list on the left side for navigation purposes (like in the admin explorer).
    I don't want to use the Detailed Navigation for that purpose, because it is far more easy to create a folder instead of an iView...
    Does anybody have an idea, how to realize this?
    Probably I need to have a corresponding Layout Controller?
    Kind regards,
    Stefan Schmidt
    Message was edited by: Stefan Schmidt

    What you would have to do is simply create the layoutcontroller you would need for your usecase. This is some 10 minute thing to do when you have your dev. environment up and running. FlexUI was meant to be totally extendable by programming -- and it really is. Releasing the necessary APIs, however, had to be delayed due to some technical constraints behind the scenes. This will change from EP6 SP2 Patch 6 on, and for NW04 SPS4 and above.
    For the time being, if you can prove to be desperate enough, I'll send you a readymade layoutcontroller to plug and play and demo with it, courtesy of the FlexUI team (without any further support, however).
    Another thing you could do on your own in SP2 already is write a so-called component, which is a decoration mechanism that we introduced in EP6 SP1. Component decorations are controls that are positioned around collection renderers (e.g. breadcrumbs, pagers and so forth). The IComponent-Interface is released, so you could develop an IComponent to be put on top of the right-hand list collection renderer. The next thing you would then have to do is to retrieve the required commands (IExecCommand, released) from the command factory and ask it for the appropriate event-link (getLinkAttributes()) to be rendered. This is basically what the HTML-renderer does when it encounters the special http://com.sap.cm protocol.
    We will probably put this layout schema into the standard (and maybe some more variations) for NW04 SPS5 and EP6 P6++ (whatever it will be called...), since it sounds pretty useful in general. THIS IS HOWEVER NOT AN OFFICIAL COMMITMENT.
    Hope this helps...

Maybe you are looking for

  • Using an external hard drive to house my iTunes library

    I have a Western Digital external hard drive plugged into my black macbook and had it set up to have my itunes default library to be on the hard drive. I select it when it is plugged in and have had to transfer all of my music over to it and went thr

  • How do I add entries to PCManFM's right-click menu? [SOLVED]

    Hello there, Is there a way to customize PCManFM right-click menu? I'd like to add custom entries, for instance: right click a folder and choose "Start slideshow" to get the following command executed: "qiv -smt <selected_folder>" Can this be done? H

  • JobOwner doesn't have permissions to use proxy 1 for subsystem CmdExec

    Hi All,  I got a strange issue on my SQL Jobs which run with Proxy. Some of the times, the SQL jobs run under job owner, instead of proxy account. Furthermore, it causes the SQL jobs failed.  "JobOwner doesn't have permissions to use proxy 1 for subs

  • Recordable DVD with info on it shows up blank

    I have a DVD+R that has photos on it in jpeg format. When inserted into my MB Pro, Snow Leopard, 10.6.5, the DVD shows that it is empty and available for burning. The same DVD shows all of the photos just fine in an iMac, 10.5.8, and it does not see

  • Simple select with "Or"

    This is very basic but I can't find any helpful resources out there that really give in depth query examples. I need a select statement that does something like: select * from table where column1 = '1' and column2 = '2' and column3 = '3' and (column4