Store French & Japanese in WE8ISO8859P1

Hi
We are using the below character set in our R12 12.1.3 instance.
NLS_CHARACTERSET - WE8ISO8859P1
NLS_NCHAR_CHARACTERSET - AL16UTF16
We want to use French and Japanese languages in our R12 instance.
I can see French is supported, But How can I enable Japanese language and use with this characterset.
Thanks..

user1627204 wrote:
Hi
We are using the below character set in our R12 12.1.3 instance.
NLS_CHARACTERSET - WE8ISO8859P1
NLS_NCHAR_CHARACTERSET - AL16UTF16
We want to use French and Japanese languages in our R12 instance.
I can see French is supported, But How can I enable Japanese language and use with this characterset.
Thanks..You need to use (migrate to) a characterset which supports Japanese language.
Globalization Guide for Oracle Applications Release 12 [ID 393861.1]
AL32UTF8 / UTF8 (Unicode) Database Character Set Implications [ID 788156.1]
Which Character Set Supports Which Language [ID 62421.1]
Thanks,
Hussein

Similar Messages

  • I bought an unlocked iPhone 4s in America from an Apple Store, need Japanese service.

    As the topic line states, I bought an unlocked iPhone 4s in America from an Apple Store, need Japanese service. I need to use it in Japan. What should I do? What is a good provider? I heard that Softbank will not let you use ANY iPhone that is not purchased from them. So I am wondering what to do.
    I will be studying in Japan for 15 months, so I think it best that I get a 2 year contract, seeing as I plan to work here, following graduation. Does anyone know a way around the Softbank issue? If not, should I choose AU or Docomo? If those don't make much sense, either, than should I simply return the iPhone that I purchased in America and sign up for a two year contract with Softbank here?
    P.s. The whole purpose behind buying it in America to begin with was because if I return to America, I can always use it there, too.

    Hi,
    I am in the same situation as Iooc, I live in Uruguay and the iphone 4s costs 1400 Us dollars. I have been told that this price is caused because apple does not offer a discount to the Uruguayan distributors, therefor they are buying at the same price as in an apple store.
    Well, as I have a friend travel next week to the US, I wanted to know about the unlocked iPhone 4s. Is it only GSM? Won't I be able to use intent 3G in this phone here in Uruguay?
    Thanks

  • Itunes store in Japanese!!!! Prices in Yen?????

    Every time i open itunes store, it opens in to the japanese store.It lists all the top artist from the Japanese store. How can i fix it?? All the prices are in Yen!!! Apple losing money!! Anyone.. (everything else on my computer is in english)

    ITunes is sending me to the French store! The monetary units are Francs. I also made sure my language was set to English. This started after I upgraded to the new version yesterday. Please help! Oh yeah....I would be buying stuff right now if I knew how much things cost. ITunes is losing $ every second.

  • How can i change my switch my app store to Japanese

    I IVE IN JAPAN BUT MY APPP STORE ARE POOPING AMERICA HOW DOI SWITCH BACK TO JAPANESE STORE ?
    THANKS

    Click here and follow the instructions to change the iTunes Store country.
    (109881)

  • ITunes store in japanese

    I just purchased a MacBook Pro in Bangkok and when I log onto the itunes it comes up in Japanese. This is the only site that does that. How do I get it into English.
    Thanks,

    On the Home page of the iTunes Store, scroll to the bottom of the page.
    At 'My Store:', you can choose the country of interest.
    Hope this helps.
    M

  • My Iphone stucked at japanese app store

    Two month ago, I changed my app store to Japanese because I was going to stay in Japan for a while. I updated a new version of IOS when I was staying there.
    Now, I move back and can't change my app store to an original one. It keeps saying that " This Apple Id is only valid for purchases in the japanese itunes store. You will switch to that store". I tried everyway, signing in and out, but there is no change. Please help me. Now, I'm desperate at it
    Thanks

    Settings > iTunes & App Stores > Apple ID: > View Apple ID > Country/Region...you change here.
    However, you must have a verified billing address located in the country whose store you want to use. Thus, if your Apple ID only shows a verified billing address in Japan, you won't be able to change stores until you update/change your billing address.

  • French Characters storing Problem

    Hi All,
    I'm having a problem of not able to store the french characters in the table.
    My Oracle server character set is set to WE8MSWIN1252.
    My client character set is ISO8859.
    As I understand MSWIN1252 is super set of ISO8859. so storing a French characters should not be a problem. but still I'm not able to store french characters in the table..
    Please give me some inputs on this.
    Thanks in advance.
    Warm Regards,
    Vaishnavi

    On the Client how is NLS_LANG set exactly ?
    $ echo $NLS_LANG
    AMERICAN_AMERICA.WE8ISO8859P1
    $ sqlplus "/ as sysdba"
    SQL*Plus: Release 9.2.0.4.0 - Production on Thu Dec 8 12:08:01 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    SQL> select * from v$nls_parameters where parameter like '%CHARACTERSET%';
    PARAMETER                      VALUE
    NLS_CHARACTERSET               WE8MSWIN1252
    NLS_NCHAR_CHARACTERSET         AL16UTF16
    SQL> conn test/test
    Connected.
    SQL> create table temp (a number, b varchar2(20));
    Table created.
    SQL> insert into temp values (3, 'vaishé');
    1 row created.
    SQL> select * from temp;
             A B
             3 vaishé
    SQL> exit
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    $ unset NLS_LANG
    $ sqlplus test/test
    SQL*Plus: Release 9.2.0.4.0 - Production on Thu Dec 8 12:10:59 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    SQL> insert into temp values (3, 'vaishé');
    1 row created.
    SQL> select * from temp;
             A B
             3 vaishe
             3 vaish?
    SQL> exit
    Disconnected from Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    $ export NLS_LANG=AMERICAN_AMERICA.WE8ISO8859P1
    $ sqlplus test/test
    SQL*Plus: Release 9.2.0.4.0 - Production on Thu Dec 8 12:11:49 2005
    Copyright (c) 1982, 2002, Oracle Corporation.  All rights reserved.
    Connected to:
    Oracle9i Enterprise Edition Release 9.2.0.4.0 - Production
    With the Partitioning, OLAP and Oracle Data Mining options
    JServer Release 9.2.0.4.0 - Production
    SQL> select * from temp;
             A B
             3 vaishé
             3 vaish¿
    SQL>                                                                                                                  

  • Storing JAPANESE Characters

    Hi,
    I need to store the Japanese characters into the database; for this i have used NCHAR & NVARCHAR2 to store the UNICODE data. I am using VC++ dialog based application using ODBC to connect to the database. When i store the Japanese characters into the database it won't store properly, and it displays the garbage values when i query for selection. How to solve this problem? How to store the Japanese characters into the database? My database's Charcter set is : WE8ISO8859P1. I don't want to change this character set. Insead I have used NCHAR to store the data. Still it is not working...Please give the solution for this one...
    Thanks & Regards,
    K. Venkata Ramana.

    Use the UTF8 (Unicode) character set in Oracle. Assuming you are using the database configuration assistant, you would need to choose a 'custom' install rather than 'Typical(Recommended)' in order to be presented with the chance to specify your database language settings.
    Also there is an 'NLS' guide in Oracles documentation which you might find of interest.
    Jason.
    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Dara:
    Hello.
    I wish to store chinese, japanese, german and English characters in the same database. Is this possible?
    However, I would like to manage the database in English.
    If so, how do I specify the characterset when creating the database?
    If not, what should I do?
    Your help is greatly appreciated.
    Thank you.<HR></BLOCKQUOTE>
    null

  • ITunes Store Geographic localization

    I reckon that, for Apple Store (the one selling all the physical stuff, like iPods), it's normal they won't sell stuff all over the world, because there's shipping, taxes, and all. But what I don't get is why the same happens for, say, apps store? Why can Americans purchase stuff British, French, Japanese, or Brazilian people can't? What's the problem with enabling the same downloads for all customers worldwide? They're paying with money, anyways.
    This really becomes a problem when you live in a "unfavored" country, like Brazil. Here, iTunes store is simply made of the appstore. There are no songs for sale, no movies, no podcasts for download, no tv shows, nor audiobooks. Why is that?

    What's the problem with enabling the same downloads for all customers worldwide?
    Apple hasn't acquired permission to sell enough content of that type in a country to open an iTunes Store section for that content, or in the case of specific items, doesn't have permission to sell that item in that country; the copyright may be held by a different person or group in different countries.
    This doesn't apply to podcasts; those can be downloaded from any computer with an Internet connection from any iTunes Store that lists them. The iTunes Store doesn't host podcasts; it just provides a listing of those downloadable elsewhere.
    (47916)

  • HT204088 Can't access to download in App store

    I was going to download 'ekey' for my realestate electric key from App store, but some propmt came out
    that I have to switch us store from Japanese store.  I don't know what it means.
    Maybe my app store is running from japanese store. How can I switch it?

    Hello there, Flowing Water.
    The following Knowledge Base article has the steps on how to change your contry store on your iOS device:
    iOS: Changing the signed-in iTunes Store Apple ID account
    http://support.apple.com/kb/ht1311
    Thanks for reaching out to Apple Support Communities.
    Cheers,
    Pedro D.

  • HT201363 I need help, today I changed App Store from NZ to Japan , and I back to NZ App Store and I realized I lost NZ dollars from my account.

    I am japanese living newzealand ,today I changed from NZ App Store to Japanese App Store ,I just need to find out a few things . And then I changed APP store
    From Japan to New Zealand. When I looked my account ,I lost Nz Dollrs from my account.
    I had NZ $10-50 was in my account. Mow it's gone! How can I back money to account.
    Please help

    Change App Store
    1. Tap "Settings"
    2. Tap "iTunes & App Stores"
    3.Tap "View Apple ID"
    4. Enter your user name and password.
    5. Tap "Country/Region."
    6. Tap "Change Country/Region"
    7. Select the region where you will be located.
    8. Tap "Done".

  • FH - trading from french to english version

    hi,
    i would like to udate my version of FH to 11.0.2, from 11.0.1
    It is not possible for me, since i have a french version.
    Does anyone have any suggestion ?
    Friendly,
    Boyan aka julot
    FH MXa 11.0.1Fr, Mac OS X.4.8

    > i would like to udate my version of FH to 11.0.2, from
    11.0.1
    > It is not possible for me, since i have a french
    version. Does anyone have any
    > suggestion ?
    Contact Adobe customer service?
    I do not know if Macromedia had dedicated serial numbers for
    French, Japanese, etc, versions. If not it should work athough it
    usually is not possible to make cross-upgrade. Some manufacturers,
    however, have both mac and PC versions available and user can
    decide which platform to use.
    Jukka

  • Please Help !!!!! -- Reagrding csscan report - 'lossy conversion' data

    Hello -
    1. We have one database (db1) in characterset US7ASCII and does store some special characters like microsoft word's curly quotes etc.(eg “abc”) and renders and displays them correctly from Web application in the browser.
    2. We have another database(db2) in characterset WE8ISO8859P1 character set behaves the same as above.
    But the issues faced are as follows -
    1. When we try to export the data from db1 (US7ASCII) and imported in db2 (WE8ISO8859P1). It could not convert microsoft word's curly quotes etc.. could not convert correctly and replacing those with upside-down questionmarks.We tried different NLS_LANG options while export/import. But nothing seems to be working.
    Question - Not able to understand why the problem for the data conversion when both characterset databases work fine with those special characters, stores them fine.Besides WE8ISO8859P1 is strict superset of US7ASCII.
    2. We decided to alter database character set of db1 (US7ASCII) to WE8ISO8859P1 , as we need to store french characters in the future.
    WE8ISO8859P1 is strict superset of US7ASCII and both are single bytes, storage 8 bits for 8859P1 and 7 bits for ASCII7.
    We ran csscan and found weird report with exception,telling that some of the data would have 'lossy conversion'. To me it seems that data could be those special chars like 'microsoft word's curly quotes etc..'
    Questions -
    1. Why the 'lossy conversion' ? when target is the superset of current one ?
    2. when it says 'lossy conversion' what does it mean ? will the data will be corrupted for those chars (like upside question marks)?
    3. How to fix the 'lossy conversion' data before altering the database character set ?
    I am very confused with all of the above...Really need help on how to proceed on this.
    Any help would be very much appreciated....
    Thanks
    Rama

    You appear to have invalid data in the database. Understanding how you can have invalid data in the database, and yet be able to have the applications appear to work, though, is a bit complicated.
    When data is being exchanged between the database and the client, there are two character sets to be concerned with-- the database character set and the client character set. If these two character sets are different, Oracle will automatically convert between the two character sets. If the two character sets are identical, however, the data gets passed between client and server is not validated at all-- the server assumes that the client is passing valid data.
    The problem comes, however, when the client passes in data which is not valid. If I set the NLS_LANG on my client to specify that I am sending ASCII data, and the database uses the US7ASCII character set, I can send and receive Chinese data without a problem, so long as every application knows the real character set, treats the data appropriately internally, and lies about the true character set of the data when communicating with the database. Obviously, though, you cannot validly store Chinese data-- you've basically turned the VARCHAR2 column into a binary field-- the problem is that the data will be corrupted if the application doesn't know how to decode it properly.
    In your case, the US7ASCII character set only encodes the first 128 characters (0-127), which does not include any of the special Microsoft characters. If you were to try to transfer those characters to an ISO 8859-1 database, the character set conversion that would be necessary would fail, so the data would be corrupted.
    Fixing the data corruption is relatively simple, provided you've understood the explanation above. You can, for example, write a simple OCI application that selects the columns with the Windows characters and writes them to a file. The client NLS settings would be US7ASCII but the file would, presumably, use the Windows-1252 encoding. Then, you would alter the database character set, corrupting the Windows characters. You could then load the file you created before altering the database character set, assuming you changed the client NLS settings to correctly identify the encoding of the data.
    Obviously, you will want to test this extensively before starting on your production database. You'll also probably require downtime to reload the data.
    Justin
    Distributed Database Consulting, Inc.
    http://www.ddbcinc.com/askDDBC

  • Mac with a foreign keyboard from United States?

    I'm a finnish guy living in the united states is it possible to buy a macbook pro with a finnish keyboard from here? I know it's not on the keyboard list in the apple store, but can they deliver custom keyboards to united states?
    Has anyone ever ordered a mac with some other foreign language keyboard?

    Unfortunately no. The online store will carry English, Western Spanish, French & Japanese only. If you must have Finnish you will have to purchase from that store and ask to have it shipped to a friend or family who will have to then ship it to you. Not very elegant or economical but it's a solution.

  • Can I buy a Mac Pro in the U.S., with a German keyboard?

    can I buy a Mac Pro in the U.S., with a German keyboard?

    The Mac Pro Tower is NOT a laptop computer. It weighs 65 lbs, and holds four  full-size Hard Drives. It uses a detachable keyboard.
    US English
    Western Spanish
    French
    Japanese
    ... are readily available at the Apple Online Store, in wired and wireless.
    For German, you would have to call them and make special arrangements, or pick one up an additional keyboard when you get back home.
    This thing won't fit in your suitcase. Are you sure you want to pay to ship it home again? I would be tempted to sell it when you are leaving, and buy a new one at Home.
    A laptop would be a better choice. These are also available with the same four choices of languages (in all models) through the online store.
    You can make all the German characters and accents with the USEnglish keyboard, but some are two keystrokes.

Maybe you are looking for

  • Training & Event Management

    Hello Guru's Request little info from you, in Dynamic attendance menu while trying to book an employee the coloured 3 fields on the even's left side change. Even before booking the last field is green and looks like the business event got created cor

  • Hp Mini 5101 Freezes While Installing Windows....All versions, xp,vista,7,8.....Nothing Takes

    I refurbish companies retired computers as part of my business, part of our agreement is the machines all come blank, they delete partitions and wipe the entire hdd multiple times prior to my getting them, Most are as simple as reinstalling windows a

  • RAWSTRING issue in NWDS 7.3  - B cannot be resolved to a type

    Dear Experts, I'm facing an issue while importing a structure in RFC which has RAWSTRING in NWDS 7.3 SP09. This worked well in NWDS 7.0 but having issues in NWDS 7.3 In the inbuilt Java files I'm having error in the method ( B cannot be resolved to a

  • HT5395 how do you return it to simply your number instead of apple ID?

    Before I had made some changes to my apple ID, my imessage would send messages and send them as my number. Now its send them under my apple ID and I don't recieve them on my iphone. How do I change it back to the way it was?

  • Internar order issue

    Hi, while customer is tring to change Internal order status getting error message: Error message "Balance of ORD Order Number is not zero"  for this order: 400001 Message No: KO115 we have identified KOB1 for the t code, in this report  value in obje