F1 Help content are displayed in english instead of the language logged in

Dear all,
The SAP version is ECC 6.0 unicode system.
we have imported chinese language and we logged in to SAP using chinese as the logon language.
when my end user press F1(perfromance assistant), the help contents are getting displayed in English.
We need the help contents also to be displyed in chinese.
Do I have to perform any other imports or any other steps to be done.
Kindly help me in this issue.
Your help is highly appreciated.
Regards,
chandru.

Dear Chandru
For Chinese, Help is English..
Generally Help is in English or German.
If you need any specific language u need to install SAP Help in specific language on the application server and do help configuration in the system.
Best Regards
Deepak

Similar Messages

  • Application messages are in the system log instead of the application log

    Hi SAP GURUS.
    The standard output is created from the outbound delivery .
    All the messages are hitting the system log instead of the application log .
    This is after the upgrade from 4.6c to ECC 6.0 .
    Please provide the details how to move the log to the application log since the output is the standard output (SAP provided output type ).

    verzunof wrote:
    Hello,
    My system.log is filled with these messages, they repeat every second.
    Jan 21 18:31:47 Maki-Mac kernel[0]: AppleFWOHCI_AsyncReceive::waitForDMA - context not going inactive.
    Jan 21 18:31:47 Maki-Mac kernel[0]: AppleFWOHCI_AsyncTransmit::waitForDMA - context not going inactive.
    Do these messages indicate a problem? If so what that could be problem and the solution?
    Can this contribute to the sleep/wakeup problem when iMac won't wakeup after being put to sleep manually and not sleeping according to Power Saving settings?
    Thanks a lot.
    verzunof wrote:
    I'm not certain if those messages indicate a power issue but you can try *resetting the System Management Controller* and see if that helps. Here's how: http://support.apple.com/kb/HT1806
    "The System Management Controller (SMC) is a chip on the logic board that controls all power functions for your computer. If your computer is experiencing any power issue, resetting the SMC may resolve it. The SMC controls several functions, including:
    Telling the computer when to turn on, turn off, sleep, wake, idle, and so forth.
    Handling system resets from various commands.
    Controlling the fans."
    Carolyn

  • Korean characters are displayed as blank box on the TextField in Galaxy Note 3/Android 4.4/AIR 4.0

    The AIR SDK we used is 1/14/2014 Release - AIR 4.
    The device we have tested on is Samsung Galaxy Note 3/Android 4.4.
    We found that it's quite similar with Bug 3681788 which has been fixed in Beta version 4.0.0.1619.
    We checked the issue again with this beta version, and the result is Chinese characters are shown correctly, but Korean's are still not.
    Bug 3681788: The CCJ languages characters are displayed as blank box on the TextField.
    Hope it can be fixed as soon as possible.

    Japanese Characteres have same issue.
    We tested on ASUS Nexus 7/Android 4.4.2/AIR 4.0 and Japanese characters are displayed as blank box in the TextField.
    The AIR SDK we used is February 20th 2014 Release - AIR 4.
    The device we have tested on is ASUS Nexus 7/Android 4.4.2.
    AIR SDK 3.6 worked fine.
    AIR SDK 3.9 has same issue.
    We tested Chinese on ASUS Nexus 7/Android 4.4.2/AIR 4.0, and Chinese Characters are displayed as blank box in the TextField.
    I doubt that Korean Characters will also displayed as blank box.( Sorry we cannot read or write Korean so we couldn't test it)
    I am guessing GalaxyNote 3(4.4) may also have same issue with Japanese.
    Hope this helps
    Kenta

  • Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0

    Chinese characters are displayed as blank box on the TextField in Taiwan Android 4.4.2/AIR4.0, such as Nexus7, HTC One,  but in mainland China Nexus7(Android 4.4.2/AIR4.0) showed normal
    AIR SDK is 4.0.0.1628.
    Hope it can be fixed as soon as possible.
    Here is test code:
    package
              import flash.display.Sprite;
              import flash.display.StageAlign;
              import flash.display.StageScaleMode;
              import flash.text.Font;
              import flash.text.TextField;
              import flash.text.TextFieldAutoSize;
              import flash.text.TextFormat;
              public class TestFont extends Sprite
                        public function TestFont()
                                  stage.scaleMode = StageScaleMode.NO_SCALE;
                                  stage.align = StageAlign.TOP_LEFT;
                                  var sprite:Sprite = new Sprite();
                                  var value1:String = "简体中文测试";
                                  var value2:String = "繁體中文測試";
                                  var txt11:TextField = createTextField(null, "11 "+value1);
                                  txt11.x = 10;
                                  txt11.y = 10;
                                  sprite.addChild(txt11);
                                  var txt12:TextField = createTextField(null, "12 "+value2);
                                  txt12.x = txt11.x + txt11.width;
                                  txt12.y = txt11.y;
                                  sprite.addChild(txt12);
                                  var txt21:TextField = createTextField("STHeitiTC-Medium","21 "+value1);
                                  txt21.x = 10;
                                  txt21.y = txt11.y + txt11.height;
                                  sprite.addChild(txt21);
                                  var txt22:TextField = createTextField("MSYH","22 "+value2);
                                  txt22.x = txt21.x + txt21.width;
                                  txt22.y = txt21.y;
                                  sprite.addChild(txt22);
                                  var lastY:int = txt22.y + txt22.height;
                                  var fonts:Array = Font.enumerateFonts(true);
                                  var index:int = 0;
                                  for each (var font1:Font in fonts)
                                            index++;
                                            var txtF:TextField = createTextField(font1.fontName, index + "/" + fonts.length + " " + font1.fontName + " "+value1 +" " + value2);
                                            txtF.x = 10;
                                            txtF.y = lastY;
                                            sprite.addChild(txtF);
                                            lastY += txtF.height;
                                  addChild(sprite);
                        public function createTextField(font:String, value:String):TextField{
                                  var txt:TextField = new TextField();
                                  txt.autoSize = TextFieldAutoSize.LEFT;
                                  var format:TextFormat = new TextFormat();
                                  if(font != null){
                                            format.font = font;
                                            txt.defaultTextFormat = format;
                                            txt.setTextFormat(format);
                                  txt.text = value;
                                  var dformat:TextFormat = txt.defaultTextFormat;
                                  if(dformat != null){
                                            txt.text = value + " |" + dformat.font;
                                  if(font != null){
                                            txt.setTextFormat(format);
                                  return txt;

    I am in mainland China, my Nexus7 can display chinese characters, but my friend in Taiwan, his android4.4.2 display chinese characters as blank.
    I don't understand the reason.
    By the way, TextFormat.font don't work, whatever I set any fonts, display are the same.
    My screenshots:
    Taiwan's screenshots:

  • I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twic

    I am having problems launching the standalone version of Lightroom 6 after I have gone through the install and activation process? Lightroom starts to open but "hangs" before any photos in the catalgue are displayed. I have contacted the chat support twice but they have not been able to fix the problem.

    I went through the activation process yesterday and shut down my PC when I went to bed last evening. When I got up this morning and turned my PC on and then started Lightrom 6 (I upgraded from version 5) it started to launch but then just hung and became "not responsive". I I then uninstalled and then reinstalled the product today but the same thing happened. What is weird is that when I install from the standalone file I downloaded when I purchased the upgrade it looks like it's downloading the software again over the Internet? I have been having these problems for the last four or five days. I have contacted the chat support folks twice and they were able to get it working but whatever they did did not last as the problem reappeared again once the PC was shut down and then started up again.

  • Special characters / symbols  like u2018u2206u2019 are displayed as u2018#u2019 in the print pr

    While displaying print preview / taking print output using QGA3 Transaction with developed Z SAPScript form specified as one of the parameters(say for example ZARMEXP), the special characters / symbols  like u2018∆u2019 are displayed as u2018#u2019 in the print preview / print output . Of course similar problem had existed for Lambda Symbol u2018u03BBu2019., but it was resolved by using the font type Helve_I7. But for the symbol u2018∆u2019 we checked with almost all the fonts that were available in the system, but of not much use. Hence could you kindly provide us solution(s) that would resolve this issue.

    Hi,
    I hope this depends on the printer settings.
    Check whether your printer could support these characters or not!
    Thanks and Best Regards,
    Suresh

  • Punctuation marks are not displayed properly but instead show the code on web pages.

    My name is Marc Sven Wilson and I am the guitarist for the Tonepoets. Music is my greatest passion and I have been writing songs since the moment I first picked up a guitar in 1995!!
    My early influences came from the rock scene bands like Guns n Roses and Iron Maiden, but my musical upbringing was focused around listening to melodic music by bands such as the Beatles, Dire Straights, Simon and Garfunkle, Meatloaf and Chris Rea.
    I grew up being heavily influenced by music from the American grunge scene, i.e. Nirvana, The Smashing Pumpkins, Soundgarden, Soul Asylum, The Pixies and many more.
    I love music that has melody and substance, music that is real and written by the artist. I don’t really get this pop scene, it is false, so I generally tend to stay away from the unreal elements that kinda music portrays!!
    I am a passionate person, honest and loyal. I will always do my best to help people. I am creative and to the point and I love to socialise and meet new people, usually at a party, where ever it may be!! I am chilled out but will not tolerate liars or people who are generally here to waste my time. I like people to be straight talking and genuine, oh and I love my guitar, nuff said.
    Here’s to the Tonepoets and the magical mystery that awaits us!!

    That page is an UTF-8 encoded page (meta tag), but the Apache/2.2.3 server sends it as Western ISO-8859-1 and that is what Firefox uses to display the page.
    See http://www.w3.org/International/O-HTTP-charset#server
    Add this to the file .htaccess:
    <pre><nowiki>AddDefaultCharset utf-8
    AddCharset utf-8 .txt .html .htm</nowiki></pre>
    If you have problems with configuring the server then you can ask advice at the mozillaZine Web Development/Standards Evangelism forum.<br />
    The helpers at that forum are more knowledgeable about web development issues.<br />
    You need to register at the mozillaZine forum site in order to post at that forum.<br />
    See http://forums.mozillazine.org/viewforum.php?f=25

  • Text Box issue - displays XML tag instead of the value in EBS

    I need to use a textbox (or a autoshape with text) to place a data element in a specific position on the page in an RTF template. I tried using tables and it didn't help. This layout needs some elements to be placed at specific location and using an autoshape or a text box is easy. When I preview the pdf output on my desktop, it works fine. Once I upload the template into EBS XML Publisher, the value in the text box shows up as an XML Tag instead of the value in that tag. The same XML data when loaded and previewed locally shows the data instead of the tag.
    Any thoughts on this? Is there a patch or something we might need for this in EBS?
    Thanks,
    Vinay

    Thanks Tim for the quick response.
    Yes - the versions are same. Also, I tried giving the complete path. The issue is that it is not even reading the text in the text box as an XML tag. It seems to think the whole text box is an object and hence just display that text as is. If it was reading and not able to resolve it, I guess it would have displayed blank (and not the tag as is). Again as I mentioned it works fine in local preview on my machine.

  • Incorrect Balances are displayed in FAGLB03 after changing the account curr

    Hi
    We are facing an issue in the GL balances displayed in the transaction FAGLB03. The issue has occurred after the account currency has been changed to USD and user has reversed a document (Posted in AUD).
    FAGLB03 is showing a balance in AUD (which ideally should be zero) and does not any show USD balance. The affected accont is a P&L account.
    The reason we have identified is FB08  while reversing an old document is posting the reversal document in the old document currency and do not consider the existing GL account currency.
    Steps for Recreating the issue:
    1. The Account Currency is in AUD with u201CBalance in Local Currencyu201D checked in the Master data of the GL Account
    2. Make the GL account to zero by making a Journal posting through FB01 .
    3. Change the account currency to USD .
    4. Reverse the document posted in Step 2 through FB08 .
    5. You can see the mismatch in AUD and USD balance in the transaction FAGLB03
    Error:
    System displays an amount in AUD balance in FAGLB03 (Which ideally should be zero). System does not show any balance in the total screen of USD balance but when the account is drill down the USD balances appear in the line item report against the document currency field.
    It would be really helpful if you can provide some light on the impact of this issue on month end and year end processing.
    Please also let me know if any one has come across this issue and possible solution.

    When you reversed the entry in step 4, it used USD where the original document is AUD.
    1. The Account Currency is in AUD with u201CBalance in Local Currencyu201D checked in the Master data of the GL Account
    2. Make the GL account to zero by making a Journal posting through FB01 .
    3. Change the account currency to USD .
    4. Reverse the document posted in Step 2 through FB08 .
    5. You can see the mismatch in AUD and USD balance in the transaction FAGLB03
    To correct this create a Reversal entry of the reversal entry in Step 2. Then change the account currency in AUD then do the reversal you did in Step 4. After that change the account currency to USD.

  • Mavericks Folders displays as PLIST instead of the blue folder icon

    Some days ago some of my folders start to show in the finder as PLIST instead of the normal blue folder icon. The number of folders that shows in that way are increasing, i don't know what trigger this. I have tried with restoring the permissions, but nothing seems to fix the problem.
    i'm using mavericks 10.9.5. i also attached a screenshoot. Hope someone cans help me.
    https://38.media.tumblr.com/9fb877a0f3cc1cd142ea84bc5605cdf1/tumblr_nf1l0u9Xg91r o9q1no1_400.png

    Do a backup.
    Go to Finder and select your user/home folder. With that Finder window as the front window, either select Finder/View/Show View options or go command - J.  When the View options opens, check ’Show Library Folder’. That should make your user library folder visible in your user/home folder.  Select Library. Then go to Preferences/com.apple.finder.plist.  Move the .plist to your desktop.
    Re-launch Finder by restarting and test. If it works okay, delete the plist from the desktop.
    If the same, return the .plist to where you got it  from, overwriting the newer one.

  • InputComboboxListOfValues : How to display a label instead of the value ?

    Hi,
    I have a page containing a inputComboboxListOfValues component. This works fine but when I select a value, the field then takes the item code (not displayed in the combo bos LOV model) instead of the label.
    How can I do the same as http://myadfnotebook.blogspot.com/2010/09/getting-string-value-or-item-code-of.html but with inputComboboxListOfValues since the list may be very long ?

    Hi,
    Create a view object that is based on two entities (e.g. EmployeeVO based on Employees entity and Departments entity). Then choose the descriptive attribute (e.g. Department name from Departments entity) to be included in the query. Build the table dragging the EmployeeVO and then deselect e.g. departmentId so that department name remains
    Frank

  • Some key figures are not being correctly reversed in the Change Log

    Hi Experts,
    I'm working with the BI 7 (SP 15) and I have created an ODS with Overwrite option (Record Mode equal to ' ') and a Cube receiving data from this ODS.
    Whenever I have a change in one existing record in R/3 side (already previously loaded to BW), it comes perfectly to the ODS and overwrite the record in the Active Data. However, in the change log table, the before image record is not reversing all the key figures, there is one (Quant type) which is not working and it is being doubled in the cube. All the other key figures are Amount type and are working fine. PLease see below some examples of the Change Log behavior:
    First time the record comes - Change log content:
    Material   Valid Dt   Cost Value      Quantity Rec. Mode      Req. ID
    1234     May/01   $  100.00       10          'N'     1
    Second time when the record changes the Date:
    Material     Date      Cost Value      Quantity Rec. Mode      Req. 1234     May/29   $  100.00       10          '  '     2
    1234     May/01   $  -100.00       10          'X'     2
    Then the final result in the cube, after it is compressed, is:
    Material     Date      Cost Value      Quantity
    1234     May/29   $  100.00       20      
    Also, I have a Counter in the transformation to the Cube which is a constant equal to 1, it is also being aggregated erroneously. I could create a routine to check the record mode coming, but I'm not sure it is the best solution.
    Can anybody help me to figure this out, please?
    Thanks in advance.

    Hi Rajkumar,
    Actually it is a generic extractor (customized) and the ODS active data is getting the delta records correctly. After I extract from R/3 and activate the ODS, the active table has correct results, but the change log table has the problem described before. All the fields comes from one single extractor.
    The 0RECORDMODE that I mentioned is about the setting in the transformation to the ODS. You have the Technical rule group where you can set the 0RECORDMODE, in my case it is set to ' ' (blank) which means it will receive After-Images from the extractor (which I think is correct in my case). The most curious is that it is working for almost all key figures (all amount type), except for the Price Unit which is Quantity type.
    Any other ideas?
    Thanks.

  • The contents of my emails are not showing when I open in my usual Firefox. However, if I open in explorer all contents are displayed. I prefer Firefox and don't want to switch back to Explorer. Can you please help me with this situation?

    I have always been able to open my emails and access their contents using Firefox. Now, this morning, I can no longer access the contents of my emails, but can still open them.
    I called 'virginmedia' who told me to try using Explorer, which worked, and they told me the problem was with Firefox.

    Sugestion: Upgrade Firefox to the latest stable version => www.getfirefox.com
    There are many problems with webmail (especially gmail) lately. It can be caused by the AdBlock extension. If you have it installed here's what to do:
    1. "Ctrl+Shift+F" Preferences (or right click on ADP symbol and choose preferences)
    2. 'Filters' menu > "Update all subscriptions"
    Solution from https://support.mozilla.com/pl/questions/896267 by [https://support.mozilla.com/pl/user/52 dmcritchie]

  • Netweaver content area display problem

    Hi guys,
    I have installed NW 07 at a local system. Earlier it was working fine .but from few days  I am facing a very strange problem at various netweaver components screens  :
    1) Login in to netweaver administration through browser opens a very distorted HTML , instead of usual admin page .Although the content of page is same as the standard administration page.but the display is distorted.
    2) Same problem of 'distorted display' is coming  with SLD home page. but the SLD admin page is looking fine.
    3) Similar problem in portal for various iview creation templates , user admin(Identity management) page.
    I am getting this problem at few machines, but its working fine in some other machines.
    Is the problem machin specific? I had tried the login at 10 machines in same domain . among which it has given problem with 4 machines.
    please suggest the solution
    regards
    Poonam
    Edited by: poonam sharma on Jun 19, 2008 3:18 PM

    Hi Poonam,
    This kind of problem will come when the theme is not reflected.
    Are you using any custom webdynpro theme. If theme is not active with the proper url in Visual Administrator then the UI elements which are related to webdynpro will appear as distorted.
    Please check the webdynpro theme entry in Visual Administrator under following path
    Open Visual Administrator > Expand the Services Node > Click on Configuration Adapter > right pane blick Display Configuration > Expand the tree structure > Expand the WebDynpro > Expand Local Node >then select property sheet theme. Here check whether some theme entry is there? .By default without any entry will take the default webdynpro theme.
    Try with this .Same kind problem earlier we also faced where we got solution on making the proper entry in the input field.
    Hope it will help you.
    Reward the points ....
    Cheers,
    Rudradev Devulapalli

  • Spellcheck and certain menus are using UK English instead of US

    I'm using InDesign 5.5, Windows XP.  I changed my preferences to use the English: USA dictionary and spelling. However while spellchecking it stops on words that are spelled correctly, but when I look at the dialog box, it's referring to the English: UK dictionary.  I've also noticed in some of the menus the words are UK versions. For example, instead of "color", it's spelled "colour". Any idea on how to fix this? Thanks!

    I checked both the character and paragraph style and they both are English: USA.
    This is one of the menus:

Maybe you are looking for

  • DI Server with SQL Server 2008

    Hello. In the company where I work we develop an application that uses B1WS. In the development environment had the following characteristics: SAP Business One 2007 SP01, PL 09 SQL Server 2005 Developer Edition Windows XP Professional SP 3 SAP Busine

  • Change labels in print menu from address book

    I am trying to print invitation labels from my address book for a personal party. I would like to change the labels in the print menu to add "and guest" or "and family". I called Mac support but they couldn't help me. Does anyone know how to manipula

  • Yet again, my appointments have been be deleted from iPhone and iPad!

    Can anyone explain why some appointments loaded on my iPad, iPhone and Outlook are deleted? And if there is any way I can recover them? Not for the first time.  Thank you.

  • To get the DB table name used by CRM_UI_FRAME to store data.

    Hi All, Can anyone plz tell me how to get the DB table name used by the CRM_UI_FRAME to store data .Actually its a Ztable. Or else where to put the debug poin in order to get that. Thanx Abhishek

  • Calendar - repeating events

    Hi - I set up annual events in my calendar by setting annual repeats. I am syncing with Outlook. After doing this, most of my annual events now repeat every day, until 2028... these are events that are set to 'all day' so they end up being all day, e