ITSmobile and chinese characters under UNICODE

Hello,
we already use ITSmobile on our ECC6.4 EhP4.
Now we plan a roll-out of this process to China.
As far as i know it is enough to install and activate chinese language (simplified Chinese) to be able to log on in chinese and get all transactions with chinese characters.
Is this also valid for ITSmobile or do we have to take something else into account?
Best regards,
Alex

Hello Alex,
Make sure that you have the Chinese language installed on the mobile device.  Also need to make sure that you have Chinese on your R/3 system, easiest way to test is to logon in Chinese (usually simplified Chinese for China).
Edgar

Similar Messages

  • Using SQL*Loader to Load Russian and Chinese Characters

    We are testing our new 11.2.0.1 database using Oracle Linux 6. We created the database using the AL32UTF8 NLS Character set. We have tried using sqlldr to insert a few records that contain Russian and Chinese characters as a test. We can not seem to get them into the database in the correct format. For example, we can see the correct characters in the file we are trying to load on the Linux server, but once we load them into a table in the database, some of the characters are not displayed correctly (using SQL*Developer to select them out).
    We can set the values within a column on the table by inserting them into the table and then select them out and they are correect, so it appears the problem is not in the database, but in the way sqlldr inserts them. We have tried several settings on the Linux server to set the NLS_LANG environment to AMERICAN_AMERICA.AL32UTF8, AMERICAN_AMERICA.UTF8, etc. without success.
    Can someone provide us with any guidance on this? Would really appreciate any advice as to what we are not getting here.
    Thanks!!

    The characterset of the database does not change the language used in your input data file. The character set of the datafile can be set up by using the NLS_LANG parameter or by specifying a SQL*Loader CHARACTERSET parameter. I suggest to move this question to the appropriate forum: Export/Import/SQL Loader & External Tables for closer topic alignment.

  • English and Chinese characters in a FIle

    Hi,
    I need to read a file from application server and create a idoc with that data. But, the File may sometime contain a mix of English and Chinese Characters as below.
    File at application server is as below format:
    #####û´##û³##úÊ##þÎñÓ#######MR###õ###########ø°####ò²#####7588##7590##200000
    The file has six fix fields separated by ''. But when I move these fields in six variables, in 4th variable the value comes as '#õ###########ø°####ò²#####7588##7590##' instead of only '#õ' (it takes value of 5th variable also) and then the rest of fields get misplaced.
    Any idea about this problem?
    Please note that My system in SAP 4.6.
    Thanks.

    Hi..
    Probably  is caused by the 2bytes consume of chinese characters, have you tried to temporarly delete those chinese characters from the input data and see what happen?..
    Hope to help...

  • Block japanese and chinese characters in a string

    Hi,
       I need to check a string whether it contains only Alphabets, Numbers and special characters. Requirement is to block Japanese and chinese characters . If possible let the know the logic through which this can be achieved.
    Your assitance will be appreciated.
    Thks in advance

    Hi.
    If sy-langu NE 'JA' or sy-langu  NE 'ZH'.
    Write your logic here as per your requirement.
    Endif.
    Regards.
    Jay
    Edited by: Jay on Jan 6, 2009 5:47 AM

  • SQL*Plus and chinese characters

    Hi all,
    I have following scenario:
    1. Database 10.1.0.5 with following NLS-Parameter:
    SQL> select * from NLS_DATABASE_PARAMETERS;
    NLS_LANGUAGE AMERICAN
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_TERRITORY AMERICA
    NLS_CURRENCY $
    NLS_ISO_CURRENCY AMERICA
    NLS_NUMERIC_CHARACTERS .,
    NLS_CHARACTERSET WE8MSWIN1252
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD-MON-RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH.MI.SSXFF AM
    NLS_TIMESTAMP_FORMAT DD-MON-RR HH.MI.SSXFF AM
    NLS_TIME_TZ_FORMAT HH.MI.SSXFF AM TZR
    NLS_TIMESTAMP_TZ_FORMAT DD-MON-RR HH.MI.SSXFF AM TZR
    NLS_DUAL_CURRENCY $
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    NLS_RDBMS_VERSION 10.1.0.5.0
    SQL> select * from NLS_SESSION_PARAMETERS;
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY GERMANY
    NLS_CURRENCY €
    NLS_ISO_CURRENCY GERMANY
    NLS_NUMERIC_CHARACTERS ,.
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD.MM.RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT DD.MM.RR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT DD.MM.RR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY €
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    SQL> select * from V$NLS_PARAMETERS;
    NLS_LANGUAGE AMERICAN
    NLS_TERRITORY GERMANY
    NLS_CURRENCY €
    NLS_ISO_CURRENCY GERMANY
    NLS_NUMERIC_CHARACTERS ,.
    NLS_CALENDAR GREGORIAN
    NLS_DATE_FORMAT DD.MM.RR
    NLS_DATE_LANGUAGE AMERICAN
    NLS_CHARACTERSET WE8MSWIN1252
    NLS_SORT BINARY
    NLS_TIME_FORMAT HH24:MI:SSXFF
    NLS_TIMESTAMP_FORMAT DD.MM.RR HH24:MI:SSXFF
    NLS_TIME_TZ_FORMAT HH24:MI:SSXFF TZR
    NLS_TIMESTAMP_TZ_FORMAT DD.MM.RR HH24:MI:SSXFF TZR
    NLS_DUAL_CURRENCY €
    NLS_NCHAR_CHARACTERSET AL16UTF16
    NLS_COMP BINARY
    NLS_LENGTH_SEMANTICS BYTE
    NLS_NCHAR_CONV_EXCP FALSE
    2. Windows Language is german
    I should be possible to insert the chinese characters into the table from the SQL*Plus (sqlplusw.exe) and SQL*Plus should be able to show the chinese characters from that table.
    Is there any Step-By-Step Tutorial for the changes, that I should provide?
    Can anybody help me?
    Thanks

    I have a table CHINESE with one column STRING
    NVARCHAR2(250). There I will store the chinese
    character and display the content in SQL*Plus.
    Into the table I will insert with SQL*Plus with
    INSERT Statement.
    To store the character you could use e.g.
    insert unistr(<unicode value expression>) into table But Sql*Plus does not support Unicode display. Use SQL Developer instead for displaying your table data.
    You could also use select dump(column,1016) from table to verify that character data is correctly converted and stored.
    Windows Codepage is 1252.
    What do you mean under "what is your corresponding
    NLS_LANG client char set setting" ?With acp 1252, your NLS_LANG should contain .WE8MSWIN1252 - this tells Oracle your acp setting.
    Note however that windows-1252 does not define any Chinese characters.
    http://www.microsoft.com/globaldev/reference/sbcs/1252.mspx
    http://www.oracle.com/technology/tech/globalization/htdocs/nls_lang%20faq.htm
    You can read more about Unicode string literals in Oracle in chapter 7 Programming with Unicode, Globalization Support guide in 10.2. Also you probably should read about NCHAR literal replacement (available only in 10.2 and above).
    http://download.oracle.com/docs/cd/B19306_01/server.102/b14225/toc.htm
    Message was edited by:
    orafad

  • Can properties file have chinese characters without unicode characters?

    In my project we need to support for chinese locale. We are using Resource.properties file which has all the strings used in the application as English characters. Instead of English characters, Can the Resource.properties files be set up to save and use the Chinese characters instead of encoded unicode values?

    as i knew , it can't.

  • Hardware Solution to Draw Chinese Characters under Snow Leopard

    Under Snow Leopard one is able to draw Chinese characters on multi-gesture laptop touchpads and the system will suggest the correct character, which you can then select and use in e-mail, documents, etc. This feature is also implement on iPhone/iTouch under OS 3.
    On Friday I'll install OS 10.6 on my Intel iMac. Is there a third party USB touchpad (or other hardware solution) that would allow me to access this Chinese character drawing feature on the iMac?

    I doubt there is anything like what you are looking for, unless perhaps the iPhone or iPod Touch can be used as an input device for a desktop. But I'd ask on the Chinese-mac list as well:
    http://groups.google.com/group/chinesemac/

  • Arabic and Chinese characters are showing ??? in PDF

    Hi
    I hava an application which calls BI publisher API to generate PDF file from rtf temlate and xml input. It is fine for English contents. But the Arabic or Chinese characters are showing ??? in PDF. If I use BI publisher Desktop to load the xml and generate pdf file, it shows correct Arabic/Chinese Characters in PDF. I also copied ALBANWTJ.ttf file to my application JAVA_HOME/jre/lib/fonts/ folder. But it still doesn't work. Anyone can help me with this?
    Thanks a lot!

    I created xdo.cfg and put it in my JAVA_HOME/jre/lib/ folder. the file is configured as below:
    <?xml version="1.0" encoding="UTF-8"?>
    <config version="1.0.0" xmlns="http://xmlns.oracle.com/oxp/config/">
    <properties>
    <property name="system-temp-dir">/tmp</property>
    </properties>
    <fonts>
    <font family="Default" style="normal" weight="normal">
    <truetype path="/fonts/ALBANWTJ.ttf"/>
    </font>
    </fonts>
    </config>
    But now I'm getting this error while generating pdf file:
    Adobe Reader could not open 'xxx.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded).
    Is there anything wrong in my xdo.cfg?
    Thanks!

  • There's a little cartoon and chinese characters in my status bar that I didn't not put there and can't delete

    I recently had my account smurfed,I think it's called-my email was attacked-sent a bunch of emails to friends as if from me---I changed password,etc-no other problems since-but I realized this morning that there's something in my status bar with chinese characters after it(the attack on my email was from Chinese source) and when I put my cursor over it-it doesn't give me any options-doesn't open...I suspect its from the same attacker---what is it? How can I get rid of it?

    From Apple support, I found out this file is in the operating system folder. Apple support is satisfied that it's not a virus because a virus wouldn't be mixed with the operating system files. I only have familiarity with PCs and know that malware frequently disguises itself within the Windows operating system. Are there any out there who are adept with OS X 10.8.2? There must be someone. I mean, people code software for new Macs all the time. Anything would be helpfull: a book, an article--anything. I don't want to spend money on an antivirus program that may not even work and probably also slow down my computer. I went through all the major antivirus programs on my PCs. All of them allowed malware to get onto my computers. And what's worse, they couldn't delete the viruses. They would just give complicated instructions that involved manually editing the registry in Windows. The primary reason I bought a Mac is that I was told at a Mac retail store that I don't need an antivirus program; that the operating system is designed with built in barriers to malware. I thank anyone in advance for help.

  • Help Needed with using Japanese and Chinese characters in SQL Server

    Hi,
    In my application I have to deal with storing chinese, japanese and English characters in the database which will come from a JSP ... Please help me in knowing how to do this...
    Thanks
    Rhea

    Hello,
    I believe that I answered this question on this post:
    http://forum.java.sun.com/thread.jsp?forum=16&thread=25625
    I hope that this helps.
    Perogi.

  • Chromium 8 and Chinese characters

    Chromium 8 can't upload any file with chinese characters in its filename. Anybody has the same problem? Hope that there are many Chinese users.
    Thanks!

    Maybe it's the website that doesn't accept Chinese filenames? What encoding are your files named in (probably GB, Big5, or UTF-8)? It works fine for me with UTF-8 and Gmail.

  • Tomcat, Oracle 9i and Chinese Characters

    Dear Group,
    we are using an application based on oracle 9i and tomcat 5.0. I copied the "ojdbc14.jar" and "nls_charset12.jar" to my common/lib directory of Tomcat.
    The application works fine until I insert chinese characters via the web form from our app. If I insert the chinese characters directly with the oracle enterprise console, it works.
    NLS_NCHAR_CHARACTERSET is AL16UTF16
    Any idea?
    Thanks in advance
    Ray

    Are you inserting the Chinese characters into a VARCHAR2 column or into an NVARCHAR2 column?
    What is your NLS_CHARACTERSET?
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Chinese characters to Unicode Escape

    I'd like to implement a function that convert Chinese string into Unicode escape codes. Just like what the native2ascii doing.
    I can convert single bytes with charToHex but have no clue on dealing double byte character. Any hints?

    I think unicode escapes can be obtained through the tool Native2Ascii from a file. However, if you would a code, the following might be an example.
    public class UnicodeTool{
    static String byteToHex(byte b) {
          // Returns hex String representation of byte b
          char hexDigit[] = {'0', '1', '2', '3', '4', '5', '6', '7','8', '9', 'a', 'b', 'c', 'd', 'e', 'f'};
          char[] array = { hexDigit[(b >> 4) & 0x0f], hexDigit[b & 0x0f] };
          return new String(array);
       }   // end of method byteToHex
        static String charToHex(char c) {
          // Returns hex String representation of char c
          byte hi = (byte) (c >>> 8);
          byte lo = (byte) (c & 0xff);
          return byteToHex(hi) + byteToHex(lo);
       }   // end of method charToHex
    static String toUnicodeFormat(char c){
               // int n = (int)c;
               //String body = Integer.toHexString(n);
               String body=charToHex(c); 
                String zeros = "000";
                 return ("\\u" + zeros.substring(0, 4-body.length()) + body);
        } //end of method toJavaUnicodeFormat
    /*   public static void main(String[] args){
        String str = "09Az";//example of a string
        char[] chs = str.toCharArray();
        for(int j=0;j<chs.length;j++)
         System.out.println(toUnicodeFormat(chs[j]));
    }

  • Information: BeX report and Chinese characters

    The problem appears to be a Microsoft Security Patch 956844 that was applied to our desktops.   If you save a rpt with that patch, you will get Chinese when rerunning it. If you save a rpt without the patch and rerun, it works. You can go to the bottom of add/remove programs and remove that patch on your machines to verify. The patch is consistent with breaking the rpt in every desktop in our lab.

    Hello,
    Here is how we resolved the problem.
    SAP suggest that changing the Report Panel setting of Infoview from Java to HTML will fix the problem with the korean characters.
    Login to Infoview > Preferences > Web Intelligence Document > Select a Report Panel: Query - HTML
    - Login to Infoview
    - Click on the Preferences button in the upper right corner
    - Click on "Web Intelligence Document" tab
    - In the "Select a Report Panel" section, select radio button for "Query - HTML"
    - Click on Apply button, then OK.

  • Report Generation Toolkit using Chinese Characters

    I am trying to use the Report Generation Toolkit for Microsoft Office under LabVIEW 8.0.  I would like to use Chinese characters for the headings of the columns using a 2D array of the headings and the Excel Easy Table.  When I generate the report, the text of the headings appears to be jumbled and not encoding correctly.
    For example:
    仪器编号 becomes êNhV÷S
    采前初重(g) becomes Ç‘MRRÍ‘ÿg
    Any insights here? Thanks

    Hi,
    what you describe reminded me of a bug fix in the Report Generation Toolkit 2012 :
    339092
    Using the "Append Table to Report" VI to add strings of Cyrillic font to a table in an MS Word report results in gibberish being added to the report.
    http://digital.ni.com/public.nsf/allkb/09D6DE5170B3C0BD86257A2B004CFD20
    I know that Cyrillic and Chinese characters are different but they are often confronted to the same problems...
    Aurelie

Maybe you are looking for

  • Forms 10g.

    Hi , i am facing problem in forms 10g. I have an application in which I have to FTP file from my local folder to unix server(not an Application server) ,for that i am using plink utility. so i need command which will get execut on client m/c. coz web

  • Delete standard telephone/email using BAPI_BUPA_ADDRESS_CHANGE

    Hi all, Sorry if this is a duplicate post. I searched for this and not found any clean post. I have a requirement to delete existing telephone number, email for an existing BP in CRM. I am using BAPI_BUPA_ADDRESS_CHANGE BAPI for this. all Insertions,

  • GroupWise Client 2012 SP2 & Windows 8.1 64bit & addressbook

    Hello. On one Win 8.1 Prof. 64bit worksation I've got several problem with GW Client 2012 SP2 Build 115186. Under Tools -> Options -> Security I've error messages from WMS "No version of serviceprovider of the personal Groupwse addressbook available

  • Enabling 'Manual Ordering' programmatically

    Is there a way to programmatically enable Manual Ordering for a KM folder?  I'd like to setup a repository service that checks for these kind of services and automatically inherits the parent folder's status to subfolders, but I can't find the APIs t

  • Final Cut Studio 2: Import Problem

    Hello all, I am new to these discussion boards, but have been having some troubles with my FCS2 software. I just had my computer serviced by Apple and it came back reformatted. So I install all of my FCS2 programs etc. and it seems now that none of m