Webdynpro Appl screens in different languages based on the browsers languag

Hello Everybody,
In Java Webdynpro, how to get the screen elements in different languages, based on the browser language selected.  It means.. for instance, we have the requirement to show the application in two languages, based on the language setting(language selected in the browser) of the users browsers.
We have to read the  browser language selected and based on that value, we have to get the screens to come in that language. 
Is that only through the Internationalisation process or is there any other way to do this.
Please help us by posting your concerns....
Thanks & Regards,
Ravi
Edited by: ravi shankar on Apr 28, 2009 6:36 AM

Hi Ravi,
Probably the following topics on SAP help could provide the solution you need:
http://help.sap.com/saphelp_nw04s/helpdata/en/2d/e7381138a8d2458f1f4fac32614f71/frameset.htm
http://help.sap.com/saphelp_nw70/helpdata/EN/db/f2674039c6c549e10000000a1550b0/frameset.htm

Similar Messages

  • HT4972 I tried to update my iPhone4 & Now it's dead & the apple screen is flashing on & off until the battery runs out

    I Tried to update my iPhone4 & now it's dead & the apple screen is Flashing on & off until the battery runs out!

    Hey RubyRunistein,
    Thanks for the question. I understand you are experiencing issues with your iPhone 4. Based on the symptoms you described, it may be necessary to restore your iPhone in recovery mode:
    iOS: Unable to update or restore
    http://support.apple.com/kb/HT1808
    Thanks,
    Matt M.

  • My iphone 4 has been reset and stuck on the apple screen and i cant cant push the top button as it doesnt work please help

    i reset my iphone 4 and its now stuck on the apple screen ive seen people saying push the top button but my doesnt work can anyone give me some advice please

    I'm not looking for any warranty help or something, I just want a diagnosys of my phone's situation....
    My phone is acting as if there was no battery in the phone. When there is no cable plugged, nothing happens. When there is a cable, something happens (not a lot though....).
    Could it be the battery port on the motherboard that's down ?
    PS : I've taken a Genius-bar appointment because I can't stand in that situation for years, so I'm not absolutely looking to gain money and avoid Apple's official help.

  • Validate the input file against a given schema inside an orchestration and producing 2 different files based on the validation result

    HI All,
    I have a situation.
    I need to validate the input file against a given schema inside an orchestration and producing 2 different files based on the validation result.
    A predefined success schema in case of  validation success and negative schema structure for validation failure.
    any advice ?

    Hi Rachit,I following the blog
    http://dietergobeyn.be/validating-biztalk-messages-orchestration/ and stuck in few things
    I created a helper class with the name Validation and following code
    [Serializable]
        public class Validation
            private bool _isValid = true;
            public bool Validate(XmlDocument document, Type schema)
                XmlSchemaSet set = new XmlSchemaSet();
                if (typeof(SchemaBase).IsAssignableFrom(schema) && !schema.IsNested)
                    set.Add((Activator.CreateInstance(schema) as SchemaBase).Schema);
                ValidationEventHandler eventHandler = new ValidationEventHandler(HandleValidationError);
                document.Schemas = set;
                document.Validate(eventHandler);
                return _isValid;
            private void HandleValidationError(object sender, ValidationEventArgs ve)
                _isValid = false;
    public static bool ValidateMessage(XLANGMessage msg)
    XmlDocument xDoc = new XmlDocument();
    xDoc = (System.Xml.XmlDocument)msg[0].RetrieveAs(xDoc.GetType());
    Type t = typeof(Schemas.External.Invoice_v3_1);
    Validation validation = new Validation();
    return validation.Validate(xDoc, t);
    First thing, Do i need to write the ValidateMessage method inside the helper class or not ??
    If inside, how to add the reference of schema files in the statement (Type t = typeof(Schemas.External.Invoice_v3_1);)
     I tried adding the reference of my schema project but it is showing error.
    And what is to be written in the ValidateMessage expression shape in Orchestration ?
    Really appreciate your help.

  • HT1918 How to switch apple store between different language

    My iPhone 4s was switched to a different language. How to switch it back to US store?

    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region.

  • Whatdoes it mean when the project I open has a red screen with different languages,media off line?

    I finished my movied. and then tried to move everything into a new file labeled TAJE files.  Now when I try to open the last version of the movie, I get nothing but 2 of the title clips and then every clip is a red one with different languages saying something about media off line?  I deleted old copies but thought that was ok?
    Pam

    Yes, if you have a completed DVD and just want to copy it then use disk burning software, not PRE. I use Nero and ImgBurn as my main burning applications - Nero is commercial, ImgBurn is free.
    If you want to make extra copies over time you would be better to copy the VIDEO_TS folder from your DVD to your Hard Disk and then point ImgBurn at the folder.
    For new projects requiring multiple DVDs to be burnt you would be better during Share to burn it to disk. Again, once it's there you can just point ImgBurn at it.
    Cheers,
    Neale
    Insanity is hereditary, you get it from your children

  • Drop the files into different directories based on the filename

    Hi,
    I had a reqiuirement based on the file name, i should drop the files in to different directories.
    I can get the filename through variable substitution in receiver file communication channel, now i want to drop the file into different folders based on conditions.
    suppose, if the file name is DDDX234
    i should do substring of filename0+(4), if the value is L then i should drop in X directory
    suppose, if the file name is DDDY234
    i should do substring of filename0+(4), if the value is L then i should drop in Y directory.
    How can i drop the file into differnent directories based on filename.
    Thanks
    Srinivas

    Thanks Michal,
    I mapped the directory and filename to the target header in the mapping
    Filename --> UDF --> Header(target)
    and in the receiver channel checked the ASMA and given * in the filename and directory name.
    But in runtime iam getting the error as
    Attempt to process file failed with com.sap.aii.adapter.file.configuration.DynamicConfigurationException: The Adapter Message Property 'FileName' was configured as mandatory element, but there is no 'DynamicConfiguration' element in the XI Message header
    MY UDF is
    public String Directory(String a,Container container){
    DynamicConfiguration conf = (DynamicConfiguration) container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key  = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "FileName");
    DynamicConfigurationKey key1 = DynamicConfigurationKey.create( "http://sap.com/xi/XI/System/File", "Directory");
    String FileName = conf.get(key);
    FileName = a;
    conf.put(key, FileName);
    %%%based on filename the directory should change
    String Directory = conf.get(key1);
    Directory = "/SAPInterface/XI/PPD/DHX/out";
    conf.put(key1, Directory);
    return "";
    Help me in correcting this error.
    Thanks
    Srinivas

  • I reset my ipod touch and the apple screen is frozen and already tried the steps on the apple website

    I have reset my ipod touch 3rd generation and after doing so it is frozen with an apple in the middle of the screen and i have already tried the apple support page steps and still doesnt fix it, please help me out

    The warranty does not cover accidental damage like that cased by  dropping the iPod. However, Apple has known to make acceptions. Make an appointment at the Genius Bar of an Apple store.  Otherwise Apple will exchange your iPod for a refurbished one for $99

  • My IPod touch is frozen on the apple screen how can I move past the screen

    My IPod Touch is frozen and I can't get passed the apple screen how do I unlock it

    Have you tried a hard reset yet? To do this, press and hold both the Sleep/Wake and Home buttons together long enough for the Apple logo to appear.  If that doesn't work, you'll need to connect the iPod to your iTunes library in recovery mode using the instructions in the Apple support document below and restore it.
    iOS: Unable to update or restore
    B-rock

  • Branch to different page based on the selection of select list

    Hi All,
    I have to create an application in which i have a form containing a field with static lov's ...
    now i want that whenever i click on a save button it branches to some page based on the selected value of lov of that field...
    like if i select marketing from lov and press save button then it will branch me to marketing page...
    so how can i achieve that in my apex application
    please help if anyone knows the answer

    in the page branch, change the page to *&PX_LOV_NAME.*
    change X to page number and the LOV_NAME to the name of your select list
    Don't forget to add the . on the end
    Hope this helps

  • My iphone 4 is stuck on the hello screen...with a white background after i tried to update it.  How do i correct this?  I have already gone to itunes and backed it up.  But after i back it up it always return to the hello screen in  different languages ?

    My iphone 4 is stuck in the setup phase with a white background.  It tells me hello in several diffrent  languages and tells me to slide to set up.  I have already backed it up on itunes several times but it always returns to the hello screen with the white back ground.  Can anyone please help me with this?  All of this happened after i updated it for the 1st time. Help pLease?
    Edward

    Hello Edward
    Follow the prompts on your iPhone and you will get either at your home screen like normal or get to a point of restoring from back up. The article below will give step by step for restoring from back up.
    iOS: How to back up and restore your content
    http://support.apple.com/kb/HT1766
    Thanks for using Apple Support Communities.
    Regards,
    -Norm G.

  • Lock screen in different language

    Hi,
    Just bought a new macbook air; set it up with English as the language and region etc. however, the lock screen is in another language.
    Does anyone have any idea why this has happened and how to fix it?!
    Thanks!

    A new Mac comes with 90 days of free tech support from AppleCare.
    AppleCare: 1-800-275-2273
    Best.

  • Apple email in different language

    Hi All, I'm from Malaysia. I used to set default language in ENGLISH but I've been received emails from Apple relating any activity of my Apple ID is in JAPANESE.
    I traveled to Japan once year ago, I'm not sure I've done anything wrong with the setting.
    Please help

    Go to https://appleid.apple.com/ to manage the ID, then check the language setting in the Language and Contact Preferences section.

  • I Phone 4S APP for Apple Stores in different language

    Can someone tell me why my iphone 4 app for the apple store is in german?  And how can I change to English, all my settings are to English

    You have to sign in thru iTunes . Edit your account , change your country

  • I have a 2006 MacBook Pro and the first apple screen loads but when at login the users won't show.

    What can I do

    Hey there Pinestreet87,
    It sounds like your computer seems to boot but will not show your users so you cannot log in.
    I suggest these steps from the article named:
    Try a Safe Boot
    If you're using Mac OS X 10.2 or later, you can start up your computer in Safe Mode, which includes an automatic disk check and repair. If you're using Mac OS X 10.1.5 or earlier, skip to the next section. A Safe Boot, which starts up your computer into Safe Mode, may allow you to start up your computer successfully using a reduced version of the system software. To do this, follow these steps:
    Start up in Safe Mode.
    After the system has fully started up, restart your computer again normally.
    If the computer successfully restarts, you do not need to do any more troubleshooting. If the issue persists, try Disk Utility.
    Try Disk Utility
    Start from the Recovery System or Internet Recovery (OS X Lion or Mountain Lion).
    If your computer shipped with a Mac OS X Install disc, insert the installation disc, and restart the computer while holding the C key.
    If using a Recovery partition or Internet Recovery (OS X Lion and later): When your computer finishes starting up, choose Disk Utility from the Utilities window.
    If using an installation disc: Choose Disk Utility from the Installer menu.
    Important: If you started from an installation disc, do not click Continue in the first screen of the Installer. If you do, you must start from the disc again to access Disk Utility.
    Click the First Aid tab.
    Click the disclosure triangle to the left of the hard drive icon to display the names of your hard disk volumes and partitions.
    Select your OS X volume.
    Click Repair. Disk Utility checks and repairs the disk.
    Tip: With Mac OS X v10.6 and earlier, always start up your computer from an Install or Restore disc when using Disk Utility to verify or repair your startup volume. Otherwise, you might see some disk error messages.
    Use fsck if necessary
    fsck is a command-line utility that may be able to verify and repair a disk. If you can successfully start up in Safe Mode or use Disk Utility while started up from a disc, you don't need to use fsck. Here are some situations in which fsck may be necessary.
    From: Resolve startup issues and perform disk maintenance with Disk Utility and fsck
              http://support.apple.com/kb/ts1417
    Thank you for using Apple Support Communities.
    Regards,
    Sterling

Maybe you are looking for

  • GX630 turbo button not working

    I'm not a computer guy so lingo and where to find things aren't on the top of my head, so if responding please keep that in mind. I bought this computer from a friend. It has AMD Athlon-X2, vista 32bit. At first the Eco and Turbo button wouldn't work

  • How to use query method in bopf?

    following was the code written to return the key. CALL METHOD lr_srv_mgr->query      EXPORTING        iv_query_key            = zif_viv_trq_c=>sc_query-root-test_query *     it_filter_key           =        it_selection_parameters = lt_filter *     i

  • I need to measure the movement of flat steel and make correction xy after clamp

    We are correcting for clamp movement on a robot arm.  I was looking at vision system with a servo xy correcion.  The robot shifts about .005 in randomly on a clamp before drilling and I need to find an xy plate and vision to look at a steel or titani

  • Edited iPhone 4s pictures do not appear edited when viewed/transferred on a Windows PC.

    Hello All, When I transfer pictures that are taken and edited on my iphone 4s (using the default camera app) to a Windows PC, these pictures do appear to be edited. I wish to edit the pictures on my camera (quicker), rather than transfer them and edi

  • Elements 10 dvd does not loadon my home computer?

    I have just purchased a copy of elements 10. It loaded fine on my lap top. However it does not load on my home PC. Elements came with additional 'let's create' cd, it loads OK. I have trie movie dvd as well and it's OK. To me it seems like my hardwar