Chinese PO printout (Unicode server)

Hi all,
Need some expert advice on chinese PO output.
1)if the purchasing group, payment terms description, incoterms and unit of measure are required to be printed in chinese on the PO, does that mean I have to configure the above in chinese by logging into the system with "ZH" language?
2)How about addresses for company codes, plants etc, can i log into the system with "EN" language and maintain the international version?
3)If the system is on unicode server, does that mean i will still be able to enter the chinese characters in the free text fields in the PO even when I logged into the system with "EN"?
4)If (3) is possible, if i logged into the system with "EN" language, and I select the english UOM. The PO will still be able to print out the UOM in chinese if i maintain the condition tables with the chinese output type?
5)ZH language must be installed in the system in order to print out the PO in chinese?
Anythings i need to look out? thanks.

There is an option that allows you to convert the terms that you need to a desired language in the smartform. your developer should know about it.

Similar Messages

  • How to setup the connection between non-unicode client and unicode server?

    hi.
    we played the program in 4.6x that call a data from unicode server (ECC6.0) to non-unicode server.  ( not played in the unicode server.)
    When a program ended that English Character was normal, but Korean Chinease... was unknown text.
    I think conversion from unicode to non-unicode is a main reason.
    General Notes are issued for the unicode side rfc connection configuration.
    but, i want to know how to setup into the non-unicode system to interface with unicode system.
    I hope your great answer.

    Hi,
    For taht you have to deploy korean and chinese langauges seprately on non unicode system.Then try to connect to the unicode system.It will work for you.
    Regadrs
    Vijay kumar

  • How to setup the chinese word with unicode 5CEF?

    Hi,
    I have one question about traditional chinese word with 峯 in oracle database.
    How should i to set the coninguration of oracle database ?
    This chinese word which unicode code is 5CEF.
    THX.

    It is not possible to get 2 consoles working on one network simultaneously. You can get them working one at a time only. The router  is capable of making one internet connection, carrying a single WAN IP. This will be then used when you connect to the Xbox server. You will need a couple of WAN IPs to make your consoles connect at the same time.
    To resolve NAT issues on your Xbox, you must first configure your console with a Manual or Static IP. If you're using a gateway, there may be a need to unbridge the modem. From there, log- in to Linksys Smart Wifi and click Security under Router Settings. Go to Apps & Gaming and configure your rules under Single Port Forwarding.

  • 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]));
    }

  • Retrieving Chinese Characters from SQL Server with JDBC

    Im having problems correctly recieving Simplified Chinese from the database (SQL Server 2000).
    Driver: sun.jdbc.odbc.JdbcOdbcDriver
    It seems that I cannot force the Results Set's getString(String s) method to the correct character encoding UTF-16. Java claims to have 16-bit characters but the native windows encoding cp1242 (somehting like that) seems to not be working for me.
    I can read it in from a unicode text file using the InputStreamReader object, and it will display correctly.
    All I ask is this: Has anyone successfully retrieved information from a database and displayed it correctly in a Swing application?
    Any help is welcome

    Thanks for the help.
    I was suspecting there was a problem with the driver. Microsoft's Driver worked perfectly for SQL 2000, but my target database is SQL 7 and the driver is not reverse compatible.
    I am looking for a Free liscenced JDBC driver that will work with SQL 7 (other than the sun.jdbc.odbc.JdbcOdbcDriver)
    Nothing fancy needs to be supported, just scrollable result sets, and basic insert, update, select, exec commands.

  • How can I store Chinese Character in MSSQL Server 2000 from JSP?

    Dear all,
    I've got a problem with storing Chinese Characters in MSSQL table. The list below is my setting of my project:
    HTML/JSP -- "charset=big5" (in both "meta" and "import page")
    MSSQL server -- The field of storing Chinese Characters are in nvarchar format
    But the Chinese Characters are converted into some unknown codes and what I could do to make sure the transaction can go smoothly? Can anyone give me a hand on this issue??
    Van

    the key point is yousing the connection string in the following way ;-) it works for me in Hebrew.
    Class.forName("org.gjt.mm.mysql.Driver");
    //"?useUnicode=true&characterEncoding=UTF8
    Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF8","user_name","password");
    SAMPLE PAGE
    <%@ page contentType="text/html; charset=UTF-8" %>
    <%
    // response.setCharacterEncoding("UTF8");
    // request.setCharacterEncoding("UTF8");
    %>
    <%@taglib prefix="bean" uri="/WEB-INF/struts-bean.tld"%>
    <%@ page import="java.sql.*,
    java.util.Properties,
    java.util.ResourceBundle,
    java.util.Locale,
    java.io.*"%>
    <head>
    <META HTTP-EQUIV="CONTENT-TYPE" CONTENT="TEXT/HTML; CHARSET=UTF-8">
    <LINK REL="stylesheet" TYPE="text/css" HREF="/portal/style/text.css">
    </head>
    <body dir="rtl">
    <span class="redText">
    &#1513;&#1502;&#1493;&#1514;:
    </span> <br>
    <%
    if ("true".equals(request.getParameter("insert"))){
    String text = request.getParameter("text");
    if(!"".equals(text))
    Class.forName("org.gjt.mm.mysql.Driver");
    Connection con2 = DriverManager.getConnection ("jdbc:mysql://localhost:3306/zoozoo?useUnicode=true&characterEncoding=UTF8","moshe_beeri","navctrh");
    Statement stmt2 = con2.createStatement();
    //text="&#1513;&#1500;&#1493;&#1501;";
    String dada="insert into testheb (name) values ('" + text + "')";
    // String ins = new String(dada.getBytes("iso-8859-1"),"windows-1255");
    stmt2.executeUpdate(dada);
    Class.forName("org.gjt.mm.mysql.Driver"); //"?useUnicode=true&characterEncoding=UTF8
    Connection con = DriverManager.getConnection ("jdbc:mysql://localhost:3306/database?useUnicode=true&characterEncoding=UTF8","user_name","password");
    Statement stmt = con.createStatement();
    ResultSet rs = stmt.executeQuery("select * from testheb"); // create a table for testings with id,name
    while (rs.next()){
    String text = rs.getString("name");
    %>
    <%=text%> <br>
    <%
    %>
    <hr>
    <form method="post" action="tespmysql.jsp">
    <input type="hidden" name="insert" value="true">
    <input type="text" name="text">
    <input type="submit">
    </form>
    </body>

  • Excel sheet values are displayed in Chinese while reading from server in WD

    Hi,
    I am reading an excel file values, from the excel sheet which is in the server. I am able to the read the values from webdynpro, but the values which i'm getting are in Chinese language. But the excel sheet there in server has the values in English.
    Please help on this.
    Thanks,
    Suresh
    Edited by: SureshKumar Arumugam on May 10, 2009 4:01 PM

    Hi,
    On the Microsoft Side: Ensure that the Excel Sheet - indeed has values in English. It may be that you may be reading the wrong excel sheet in the wrong folder. If not and the characters are in English and you are still reading in other languages - go to [Microsoft Help on Multiple Languages|http://office.microsoft.com/en-us/excel/HP052558391033.aspx]. Follow the procedure and change the languages for only English.
    On the SAP Side: If the above still does not work - check if you are using any .xlf files for Chinese. For more information on .xlf files and internationalization, please go to : [Internationalization of WDJ Projects|http://help.sap.com/saphelp_nw04s/helpdata/en/8e/7ce87a2aede645ae3cdc857b791590/frameset.htm]
    Thanks.
    p256960

  • 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.

  • Convert chinese character to unicode

    hello,i have a problem.
    how can i know the unicode of chinese character in a file?
    like this character ' &#31216; ' in a file a.txt
    then how can i do to read the a.txt file then get the unicode of the character?
    really need help..

    i want to know what is the algorithm and the coding
    of that tool.
    thanksYou might consider downloading the open source project and looking directly at the code for that tool. I imagine that you could create something similar in...oh, maybe 25 lines of code.
    retrieve the command line args
    open the specified file using the charset encoding specified
    for (all characters in the file) {
    if character is > 0xFF convert to \uXXXX
    output character to new file
    John O'Conner

  • How to start 1 JCO-unicode-Server and 1 JCO-none-unicode-Server

    It is possible to start one JCo-Server that is unicode-able and another one JCo-Server that is not unicode-able in one program?
    I want to share one service that my Java-Program is providing for 2 SAP-Systems. But one SAP-System is a Unicode-System and the other a None-unicode-System.
    I've implemented the tip of the following site for my Unicode-System, but anyhow it does not function:
    http://help.sap.com/saphelp_nw04/helpdata/de/87/b55a4201301453e10000000a155106/content.htm
    If I start the JCo-Server for my Unicode-System first, then the communication for this system will work, but for the other, none-unicode system not.
    If I start the JCo-Server for my None-unicode-System first, then only the communication for the none-unicode system will work.
    Any Ideas??
    Or another question: How can I make the Unicode-System communicate-able with a none-unicode JCo-Server?
    Thanks for reply.

    Hi,
    i've solved my problem: I changed all my JCo-Objects in my program from from version 2.1.8 to 3.0.2.
    After that I don't needed to input information wether it's a unicode-connection or not.

  • JSP to display Chinese From Oracle Unicode?

    My Oracle 9iR2 Database use Unicode as default character set.
    However, I can not see Chinese from JSP and use <%@ page contentType = "text/html;charset=UTF-8" %>.
    What is the solution to i18n?

    Hi,
    Why can't you use a Java Bean which takes the data from the database. Then call this bean from the JSP page using <jsp:useBean> tag.
    Ok,if you dont want a Java Bean and if you want to use an applet in a JSP file, you will have to use <jsp:plugin>tag. Here is an example
    <html><head><title> Demo Applet</title></head>
    <body bgcolor="rd">
    <% if (request.getParameter("SUBMIT") != null) {%>
    <jsp:plugin type="applet" code="DemoApplet.java" codebase="." name="Demo" height="400 with="300>
    <jsp:fallback> Plug in not supported by your browser</jsp:fallback>
    </jsp:plugin>
    </body></html>
    Hope this will help you.
    Rgds,
    Ravi Shankar

  • 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.

  • 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

  • Unicode kernel upgrade problem in XI server

    Hi
    I'm trying to upgrade the Brtools in XI server and getting the following problem:
    rx2n0v4:xdvadm 23> SAPCAR -xvf DBATL640O92_45-10002837.SAR
    stderr initialized
    processing archive DBATL640O92_45-10002837.SAR...
    --- Unicode interface [u16_get.c line 233] pid = 6963 :
    Invalid UTF-8 encountered by fgetsU16 (fileno 0x4)
    fd
    Characters previously read:
    0043 0041 0052 0020 0032 002e 0030 0031
    0052 0047                      030 0031
    --- Unicode interface -
    End of message -
    Illegal byte sequence DBATL640O92_45-10002837.SAR
    Couple of times, i downloaded the kernel today and tried but get the same error. Here XI (6.40)is the unicode server and i downloaded the unicode kernel from sapnet (brtools and SAPCAR kernel). I tried with version 7.00 kernel but get the same problem.
    Any solution of this problem?
    Regards
    Amar

    Confusion About SP16 Unicode Kernel Patch/Upgrade
    Problem with updating XI 3.0 (Kernel etc.)
    Check this might be useful.

  • Problem of using LiveCycle ES (8.0)  Rights Mangement on Traditoinal Chinese Windows Enterprise Serv

    Dear all,
    Hello.
    Recently I had to set up a LiveCycle ES 8.0 on Tradiitonal Chinese (zhTW) Windows Enterprise Server 2003. Using turnkey & express configuration, installation was actually a breeze.
    However, after installation, I discovered that Rights Mangement ES was not functioning at all. I recalled from another installation that a global policy set would be created upon installation. This global policy set was just not there to start with. To make the matter worse, no policy could be created. Everytime such attempt was made, "An internal server error has occurred; please contact your Administrator." had always been the failure message. A look at JBoss server.log states:
    com.adobe.edc.server.errors.exception.EDCServerSystemException: nullorigin: | [com.adobe.edc.server.businesslogic.audit.AuditManagerBean] errorCode:1281 errorCodeHEX:0x501 message:No such event definition exists | severity: 1
    at com.adobe.edc.server.businesslogic.audit.AuditManagerBean.logServerEvent(AuditManagerBean .java:427)
    at com.adobe.edc.server.businesslogic.audit.AuditManagerBean.logServerEventTrans(AuditManage rBean.java:541)
    more lines ...
    Not only that I was unable to create policies at all, the configuration items under Rights Management just does not work. For every configuration that I tried to make change, I would always, upon saving configuration, see "A server error has occurred; please contact your Administrator." error message.
    Installing and use of LiveCycle ES 8.0 on English version of Windows Server 2003, Windows XP SP2, or SuSe Linux 10 did not produce the errors mentioned above.
    I just wonder if Adobe LiveCycle ES 8 is currently supported on non-English OS? If it's indeed supported, what measures do I have to take to remedy the problems pertaining to Rights Management?
    Thanks for any input or suggestion.
    Paul
    NTI Corp.
    http://www.nti.com.tw/

    Hi Paul,
    Unfortunate this will not work. Traditional Chinese is not a supported operating system for the server. We support English, French, German and Japanese. In saying that most things do work but we know that Rights management is more challenged then other products in this way. If this is a production system and you want support you have to goto a supported language on your OS. If this is more for development and evaluation you can try a couple things. One thing would be to change your local and regional settings to English.
    In our testing we actually did not try Traditional Chinese, we tried Simplified Chinese, basically we were hoping it would just work, but we saw multiple errors in the AdminUI and the effort in fixing it did not fit in the schedule.
    I apologise about the lack of support for you OS/Language combination.
    Kind Regards C
    Chris de Groot
    Senior Product Manager
    Adobe Systems Inc.

Maybe you are looking for

  • SAP DB Reorganisation in SAP 4.6C Kernel 46D Patch 2500 and Oracle 9.2.0.8

    Hi Gurus, I have to delete the clients and then perform DB-Reorg. Through SCC5, I am deleting the clients. 1) Is it possible to select all the clients and delte altogether, as there are 12 clients to be deleted. For Reorg, I went through the below no

  • LINKED SERVER ISSUE on ORACLE DATABASE

    Hi everyone I have SQL 2008 R2 Running on Windows server 2003 R2 OS. I have created a linked server to ORACLE 11 I have may jobs running process against this linked server and thy work fine But soddenly I receive this error : Cannot initialize the da

  • Spotlight interfering with Time Machine?

    Hi! I've been going through some of the posts discussing Spotlight and Time Machine issues but couldn't find anything related to my current issue. Here is what's happening: For no reason (or an unknown one), but ever since I have upgraded from Snow L

  • Performance Tuning the AVG function

    Dear All, I have a table which is rapidly growing. We have a query which is frequently executed on this table and it utilizes AVG function without a WHERE clause. Is there a way to tune this query? I tried to create a Materialized View but Oracle rej

  • Lot size procedure & MRP

    Dear All, What is Lot size procedure and how it will affect during MRP run? Please provide some example against explanation.