How can i translate hardcoded messages into particular language

actually i have a requirement that is
i have one business object *ZZbus2121*
in that business object i have some hard coded messages...like "hello"
so i need to change those messages into korean,japanese,chinese simplified and chinese traditional
please help me if u know the process.......

Hello,
Message which is hard coded cannot be translated automatically.
You can try the code as shown below, but you need the help of a translator or you should know the languages in which you want to give the message or use google translator
IF SY-LANGU = 'EN'.
  Message in English.
ELSEIF SY-LANGU = 'ZH'.
  Message in Chinese.
ELSEIF SY-LANGU = 'KO'.
  Message in Korean.
ENDIF.
or
PARAMETERS : LANGU TYPE LAISO.
IF LANGU = 'EN'.
  Message in English.
ELSEIF LANGU = 'ZH'.
  Message in Chinese.
ELSEIF LANGU = 'KO'.
  Message in Korean.
ENDIF.
or else go for SE63 to translate the messages
Edited by: dnr_varma on Aug 8, 2011 1:28 PM

Similar Messages

  • How can i translate SAP Menu into Vietnamese language?

    how can i translate SAP Menu into Vietnamese language?

    Hello,
    Don't you have the language pack?
    This should not be done by customers manully ...
    And the question is not SCM system specific.
    Maybe you should ask Basis for help ...
    Best Regards,
    Ada

  • How can i translate a document into another language?

    I am trying to translate a script into Spanish. The document is secured - which is my first problem - and also - i cannot find a way to translate it?! Any and all help would be much appreciated - thanks!

    Hi elyssap
    If document allows you to copy and paste the text then you can use google Translator to translate to another language.
    Refer ; https://translate.google.com/
    ~Mandy

  • How can I translate a message into English?

    I receive messages in Italian. To date, I copy and paste into a translator. Is there a better method to get the message translated within Thunderbird?

    I use quick translator for Firefox and Thunderbird https://addons.mozilla.org/en-US/thunderbird/addon/quick-translator/?src=ss

  • How can I import Entourage messages into Mac OS X Mail?

    Hello,
    I own Mac OS X v10.4 Tiger and Office 2004 Standard Edition. I have used Entourage for e-mail, since the Mac OS X Mail application in Mac OS X Jaguar and Panther was not effective. However, since I have upgraded to Tiger, I have discovered that the Mac OS X Mail 2 application is a much better program for managing my e-mail.
    I have attempted to import my Entourage inbox into Mac OS X Mail, and I am able to see all my imported messages correctly. However, Mail now wants to re-download all messages from the server—even the messages that I have already imported from Entourage. Since I have told Entourage not to delete e-mail messages from my server, I have approximately 127 MB of messages on my mail server that Mail wants to re-download! On a relatively slow wireless connection, this is a problem.
    Aside from deleting all messages from my mail server, is there any other way that I can prevent Mail from re-downloading all my e-mail messages?

    Hello KSG2002.
    That’s how POP mail works (except in the particular case of Gmail). You would have the same problem if you wanted to use any other mail client.
    I have approximately 127 MB of messages on my mail server
    Bad idea. That’s not how POP is supposed to work. Leaving your mail on the POP server for some time is fine. Leaving it there indefinitely is calling for trouble.

  • TS4002 How can I get my messages into icloud

    How can I get my text messages into icloud from iphone

    Messages are only backed up to iCloud as part of a full iOS device backup, which can be restored in full to another, or the same iOS device.
    Messages are not available separately in iCloud, nor can they be viewed.

  • How can I translate safari page to other language on ios8 ?

    HHelp I need to translate to English from another languge the pages on safari

    You can change the iPad's language via Settings > General > International > Language
    The language of the two stores (App Store and iTunes) will be the language of the country where your account is based

  • Outlook closes and will not download a particular message.How can i get that message to stop coming to my inbox?

    outlook closes and will not download a particular message.How can i get that message to stop coming to my inbox?

    Hi,
    May I ask your intention by doing this? Is the particular message harmful to your computer?
    Which type of email account are you using? If you want to prevent a particular message from being downloaded to Outlook, we can login to the web interface of your email account and then remove the particular email from your Inbox.
    If I've misunderstood something, please feel free to let me know.
    Regards,
    Steve Fan
    TechNet Community Support
    It's recommended to download and install
    Configuration Analyzer Tool (OffCAT), which is developed by Microsoft Support teams. Once the tool is installed, you can run it at any time to scan for hundreds of known issues in Office
    programs.

  • How can I translate this from PL/SQL into embedded SQL!?

    CURSOR TEMP1 is
    SELECT emp.fname fname, emp.lname lname, emp.ssn, dname,emp.salary salary, emp1.fname supervisor_fname, emp1.minit supervisor_mdlname,emp1.lname supervisor_lname FROM employee emp, employee emp1,department d
    WHERE emp.superssn=emp1.ssn(+) and emp.dno=dnumber order by ssn;
    PNTR_TEMP1 TEMP1%ROWTYPE;
    --calcualting values for the cursor TEMP1
    for PNTR_TEMP1 in TEMP1 loop
    fname:= PNTR_TEMP1.fname;
    lname:= PNTR_TEMP1.lname;
    ssn := PNTR_TEMP1.ssn;
    dname:=PNTR_TEMP1.dname;
    sup_name:=PNTR_TEMP1.supervisor_fname||' '|| PNTR_TEMP1.supervisor_mdlname||' '||PNTR_TEMP1.supervisor_lname;
    salary := PNTR_TEMP1.salary;
    n_deps:=0 ;
    /* how can I translate this to embedded SQL...I'm using C++*/

    Hi,
    you can follow this link to use cursor in Pro*c /C++
    http://www.csee.umbc.edu/help/oracle8/server.815/a68022/sql.htm
    Regards

  • How can i rewrite this code into java?

    How can i rewrite this code into a java that has a return value?
    this code is written in vb6
    Private Function IsOdd(pintNumberIn) As Boolean
        If (pintNumberIn Mod 2) = 0 Then
            IsOdd = False
        Else
            IsOdd = True
        End If
    End Function   
    Private Sub cmdTryIt_Click()
              Dim intNumIn  As Integer
              Dim blnNumIsOdd     As Boolean
              intNumIn = Val(InputBox("Enter a number:", "IsOdd Test"))
              blnNumIsOdd = IsOdd(intNumIn)
              If blnNumIsOdd Then
           Print "The number that you entered is odd."
        Else
           Print "The number that you entered is not odd."
        End If
    End Sub

    873221 wrote:
    I'm sorry I'am New to Java.Are you new to communication? You don't have to know anything at all about Java to know that "I have an error," doesn't say anything useful.
    I'm just trying to get you to think about what your post actually says, and what others will take from it.
    what does this error mean? what code should i replace and add? thanks for all response
    C:\EvenOdd.java:31: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=true;
    ^
    C:\EvenOdd.java:35: isOdd(int) in EvenOdd cannot be applied to ()
    isOdd()=false;
    ^
    2 errors
    Telling you "what code to change it to" will not help you at all. You need to learn Java, read the error message, and think about what it says.
    It's telling you exactly what is wrong. At line 31 of EvenOdd.java, you're calling isOdd(), with no arguments, but the isOdd() method requires an int argument. If you stop ant think about it, that should make perfect sense. How can you ask "is it odd?" without specifying what "it" is?
    So what is this all about? Is this homework? You googled for even odd, found a solution in some other language, and now you're just trying to translate it to Java rather than actually learning Java well enough to simply write this trivial code yourself?

  • I build databases with appleworks over 10 years on my ibook, and continue to add to them. Now I have a macbook pro. How can I translate the databases to a compatible program?

    Over 10 years I have built several databases with Appleworks. Now I have a macbook pro. How can I translate these databases to a 10.6.8 program?

    Thanks Joe, but that won't work. I've finally found a site that answers the question: http://www.wilmut.webspace.virginmedia.com/notes/aw/page1.html
    I can only say that by Apple I have been royally screwed. I'll never buy another mac -- everything I do would simply disappear into cyberspace.

  • How can i print text message from my iPhone?

    I have an iPhone 5S.  How can I print text messages to save those conversations?

    Did you try to copy and paste the content into another app, like notes or Mail and then send it to the printer?

  • How can I re-insert pages into a PDF?

    Hi- it will become obvious that I am new to Illustrator (Creative Cloud 2014 on a Mac, for what it's worth).  I am editing a brochure and when I opened the PDF with Illustrator I was asked to select a particular page on which to work.  Now that I have done that it saved as a separate page- how can I insert it back into the brochure format?  As it stands now I have the old brochure in its entirety, and an edited, single page separately. 
    Thank you in advance.

    If you have Acrobat Pro, you can replace the previous page with the new page and then, resave the new .pdf.  It is a simple swap.

  • I have 2 games Words with Friends and Cityville that receives a Pop-up message form iTunes...  "Connect to iTunes to use Push Notifications" and will not allow me to exit out of the app or play.  How can I get this message to STOP?

    I have 2 games Words with Friends and Cityville that receives a Pop-up message form iTunes...  "Connect to iTunes to use Push Notifications" and will not allow me to exit out of the app or play.  How can I get this message to STOP?

    Yes - I connected my phone to my computer / Itunes and went into the apps section, but from there I have no idea how to manage the push notifications.  I even tryied going into itunes that is installed on my phone.  I still cannot find anyplace to manage these popups.  I have also gone into settings - notifiations - and tried turning all notifications for these apps all off but that didnt work either.  Any guidance is MUCH appreciated - Im not sure where to go from here.

  • How can I import iPhone contacts into Mac Address book

    I recently purchased a MacBook Pro and am in the process of trying to dump my Windows PC.
    All of my important contacts are on my iPhone. How can I get those contacts into my Mac Address Book?
    The same question goes for the music (ripped from CD) and my video files that are on my iPhone? The media is not that big of a deal because I can easily transfer it from my PC to my Mac but I assume I am not the only one in the world trying to do this and that Apple would make it very easy for MSFT Windows users to easily migrate to Macs.
    I must be an idiot but I don't see any option in iTunes to transfer the data from my iPhone into iTunes and/or the Address Book.
    Thanks

    The iPhone's primary function is NOT a word processor or a spread sheet analyzer.
    I didn't say, nor was I trying to imply ANYTHING of the sort. You should read what I provided again a little slower and in it's entirety, not taking this out of context, which you made into Apples and Oranges.
    It IS an iPod, a device designed to store and play music (in addition to being a browser and a phone).
    It is a phone, an iPod, and an internet device, which supports transferring iTunes content from iTunes on a single computer ONLY.
    Making it difficult to transfer my legal music from my iPhone to my Mac does not make me want to go out and buy more Apple products or Apple software.
    Good, then don't - no skin off my back. I couldn't care less if you want to remain a Windows sufferer. All this doesn't come from Apple. Much of it comes from those who OWN the distribution rights for content sold thru the iTunes Store.
    All of Apple's commercials imply how easy the user experience is over Windows. Well, in this case, they missed the boat BIG TIME!
    Everyone is entitled to their opinion, but let me get this straight. You will likely need to transfer much more than just music from your Windows PC to your Mac and if so, how do you plan on accomplishing this? If you are transferring Word and Excel files, photos, and any other data, you won't be using an iPhone for this, so I don't see the big deal with transferring your iTunes library along with all other data being transferred.
    I understand that the iPhone was not designed to be used as a backup. However, you allow the contacts to be merged in but not the music that I legally installed (but didn't purchase from the iTunes store).
    I don't allow anything - this is a user to user help forum only.
    As I provided in my first post in this thread - the sync process for contact information, calendar events, and bookmarks with an iPhone is bidirectional with the supported application on your computer. This is a sync process by definition of syncing - which is not the same for other data such as iTunes content and photos transferred from your computer to your iPhone.
    http://support.apple.com/kb/HT1296
    Apple wants to make it difficult unless I purchased the music from iTunes.
    No, Apple or really those who own the distribution rights or the copyright holders for content sold thru the iTunes Store wants to make this difficult. Content sold thru the iTunes Store is set up by Apple to be a break even - which is included with the Apple stockholder's report. Apple makes their profit via sales of the iPod and iPhone. The bulk of the iTunes Store revenue goes to those who own the distribution rights or the copyright holders for the content.
    In addition, if my hard disk suffered a crash and I lost all my music it just seems stupid not to be able to pull it off my iPhone (yes, I know data should be backed up on a different drive, and mine is, but I am sure a lot of people do not back up their data).
    Maintaining a backup of your data is important for this very reason, and for other reasons which is not Apple's responsibility. I believe iTunes includes an occasional warning message to backup your iTunes library (which can be turned off), and iTunes includes an option to transfer content purchased from the iTunes Store from an iPod or iPhone - since the overwhelming majority of this content includes DRM protection required by those who own the distribution rights or the copyright holders.
    The iPhone was not designed as an external storage device or as a backup device - end of story. If someone chooses not to maintain a backup, they are playing Russian roulette with their data. Maintaining a backup is important regardless the platform, but even more so when running Windows with constant virus, adware, and spyware concerns.

Maybe you are looking for

  • Some problem of download BSP data into excel using  cl_bsp_utility= download

    Hello Experts, I have read the blog of thomas.jung for download bsp data into excel, and it's working correct, and after some try and error, now I can download the excel with multi sheets.It's all cool except one thing.....when I add a button on the

  • What is the benefit in using OID for names resolution?

    I have been wondering about this for awhile. I have been working on getting this to work in Iplanet along with Pat Lehane ([email protected]), and it works now. What are the benefits in using OID for names resolution when you can just use the static

  • File attachments on Mobile Devices

    I created a simple test form with a file attachment button. It works in my PC browser, but hitting the button does nothing on my Android device. Is file attachment not supported on mobile devices and smartphones?

  • Issue with Session variables

    Hi SDNers, I have a few portal components on the portal page that save data directly to the http session as well as some data is stored in the bean and the bean is stored in the component's session. When the user logs in and views the portal page, th

  • I already downloaded the tracking program but FF wants to install it again?

    Why did I get a msg from FF about the spotlight app that detects tracking when it it already installed? I can't seem to find it in the applications.