South Sudan (SS) not known in Locale of Java

I'm currently programming a payment program and I'm encountering an issue with my validation of BIC's. I have a giant list of all known BIC's but one seems to fail (I validate on it's ISO country code where is use the build in Locale API from Java.
But unfortunately it doesn't seem to know South Sudan (SS) as valid ISO country, but according to Wikipedia and Swift (=keeper of the BIC's) South Sudan is a valid country and ISO:
http://en.wikipedia.org/wiki/ISO_3166-2:SS
Also Java seems to follow the ISO 3166 standard and they also state that South Sudan SS exists:
http://www.iso.org/iso/support/country_codes/iso_3166_code_lists/iso-3166-1_decoding_table.htm#SS
I can work around this (but I don't like to create exceptions for this sort of things :p), but maybe someone can give me an explanation. Or should I submit a bug report ;)?
Thanks in advanced
Regards

Updated yesterday to be sure I had the latest version:
Java JDK 7.0u4
NetBeans 7.1.2
Below I'm listing all country code's available to Java. SS doesn't seem to be in there :-/
Result of following code
Locale country = new Locale("en", "SS");
System.out.println(country.getDisplayCountry() + "\nList all countery CODE");
for (String con : Locale.getISOCountries()) {
     System.out.println(con);
Properties p = System.getProperties();
Enumeration keys = p.keys();
while (keys.hasMoreElements()) {
     String key = (String) keys.nextElement();
     String value = (String) p.get(key);
     System.out.println(key + ": " + value);
}SS >> This should be South Sudan, but since Java doesn't know it, they display SS
List all countery CODE
AD|AE|AF|AG|AI|AL|AM|AN|AO|AQ|AR|AS|AT|AU|AW|AX|AZ|BA|BB|BD|BE|BF|BG|BH|BI|BJ|BL|BM|BN|BO|BQ|BR|BS|BT|BV|BW|BY|BZ|CA|CC|CD|CF|CG|CH|CI|CK|CL|CM|CN|CO|CR|CU|CV|CW|CX|CY|CZ|DE|DJ|DK|DM|DO|DZ|EC|EE|EG|EH|ER|ES|ET|FI|FJ|FK|FM|FO|FR|GA|GB|GD|GE|GF|GG|GH|GI|GL|GM|GN|GP|GQ|GR|GS|GT|GU|GW|GY|HK|HM|HN|HR|HT|HU|ID|IE|IL|IM|IN|IO|IQ|IR|IS|IT|JE|JM|JO|JP|KE|KG|KH|KI|KM|KN|KP|KR|KW|KY|KZ|LA|LB|LC|LI|LK|LR|LS|LT|LU|LV|LY|MA|MC|MD|ME|MF|MG|MH|MK|ML|MM|MN|MO|MP|MQ|MR|MS|MT|MU|MV|MW|MX|MY|MZ|NA|NC|NE|NF|NG|NI|NL|NO|NP|NR|NU|NZ|OM|PA|PE|PF|PG|PH|PK|PL|PM|PN|PR|PS|PT|PW|PY|QA|RE|RO|RS|RU|RW|SA|SB|SC|SD|SE|SG|SH|SI|SJ|SK|SL|SM|SN|SO|SR|ST|SV|SX|SY|SZ|TC|TD|TF|TG|TH|TJ|TK|TL|TM|TN|TO|TR|TT|TV|TW|TZ|UA|UG|UM|US|UY|UZ|VA|VC|VE|VG|VI|VN|VU|WF|WS|YE|YT|ZA|ZM|ZW
java.runtime.name: Java(TM) SE Runtime Environment
sun.boot.library.path: C:\Program Files (x86)\Java\jdk1.7.0_04\jre\bin
java.vm.version: 23.0-b21
user.country.format: BE
java.vm.vendor: Oracle Corporation
java.vendor.url: http://java.oracle.com/
path.separator: ;
java.vm.name: Java HotSpot(TM) Client VM
file.encoding.pkg: sun.io
user.country: US
user.script:
sun.java.launcher: SUN_STANDARD
sun.os.patch.level: Service Pack 1
java.vm.specification.name: Java Virtual Machine Specification
user.dir: D:\Steven\Documenten\Java\PaymentGenerator
java.runtime.version: 1.7.0_04-b20
java.awt.graphicsenv: sun.awt.Win32GraphicsEnvironment
java.endorsed.dirs: C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\endorsed
os.arch: x86
java.io.tmpdir: C:\Users\Steven\AppData\Local\Temp\
line.separator:
java.vm.specification.vendor: Oracle Corporation
user.variant:
os.name: Windows 7
sun.jnu.encoding: Cp1252
java.library.path: C:\Program Files (x86)\Java\jdk1.7.0_04\bin;C:\Windows\Sun\Java\bin;C:\Windows\system32;C:\Windows;C:\Windows\system32;C:\Windows;C:\Windows\System32\Wbem;C:\Windows\System32\WindowsPowerShell\v1.0\;"C:\Program Files (x86)\Java\jre7\bin";.
java.specification.name: Java Platform API Specification
java.class.version: 51.0
sun.management.compiler: HotSpot Client Compiler
os.version: 6.1
user.home: C:\Users\Steven
user.timezone:
java.awt.printerjob: sun.awt.windows.WPrinterJob
file.encoding: UTF-8
java.specification.version: 1.7
java.class.path: C:\Program Files (x86)\Java\jdk1.7.0_03\db\lib\derbyclient.jar;C:\Program Files (x86)\Java\jdk1.7.0_03\db\lib\derby.jar;D:\Steven\Documenten\Java\lib\jdom-1.1.3.jar;D:\Steven\Documenten\Java\lib\commons-lang3-3.1-sources.jar;D:\Steven\Documenten\Java\PaymentGenerator\build\classes
user.name: Steven
java.vm.specification.version: 1.7
sun.java.command: eu.uytterhoeven.paymentgenerator.bank.BIC
java.home: C:\Program Files (x86)\Java\jdk1.7.0_04\jre
sun.arch.data.model: 32
user.language: en
java.specification.vendor: Oracle Corporation
user.language.format: nl
awt.toolkit: sun.awt.windows.WToolkit
java.vm.info: mixed mode, sharing
java.version: 1.7.0_04
java.ext.dirs: C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\ext;C:\Windows\Sun\Java\lib\ext
sun.boot.class.path: C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\resources.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\rt.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\sunrsasign.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\jsse.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\jce.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\charsets.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\lib\jfr.jar;C:\Program Files (x86)\Java\jdk1.7.0_04\jre\classes
java.vendor: Oracle Corporation
file.separator: \
java.vendor.url.bug: http://bugreport.sun.com/bugreport/
sun.io.unicode.encoding: UnicodeLittle
sun.cpu.endian: little
sun.desktop: windows
sun.cpu.isalist: pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86
Edited by: 923091 on Apr 30, 2012 1:56 PM

Similar Messages

  • "file not on the local disk" warning when it absolutely is

    Using DreamweaverCC2014 for the first time. Working on an older MacPro running Yosemite.
    I define a new site, specifying the directory in which my site's files are stored. The site has a single page, called index.htm, in the root directory, which has a link to a CSS stylesheet named "main.css" in a directory called "_css." The CSS file is contained within the directory, and appears in the Files tab of Dreamweaver as expected. The link to the stylesheet is properly formed on the index.htm page.
    At the top left of the workspace, I see two buttons: one for "Source Code," which, when selected, displays the source code for the page I am working on. Next to it is a button that says "main.css," which SHOULD allow me to open up the CSS page and edit it. However, when I click this button, I get a caution icon, along with the message that says:
    "'main.css' is not on the local disk."
    Next to this is a link that says "Get," which I would assume, when clicked, would allow me to find and relink the stylesheet. However, such is not the case. Instead, I get an alert window that says:
    "'main.css is not in a defined site"
    When I look at the page in Live View, the styled sheet is not shown, rather just the unstyled sheet. Looking at it in a browser, however, does.
    The code is correct; I have checked an re-checked it. The files are all in place and show up as expected in the Files panel. Any thoughts on why Dreamweaver thinks this CSS file doesn't exist?

    As this issue was diminishing my confidence in using the software for a mission-critical project, I contacted Adobe technical support for assistance.
    This is a known issue.
    The problem has to do with DW getting "confused" if there is any other file in the site root disk that may have the same name. In my case, there was (I tend to name the CSS files for my sites with the terribly generic "main" designation). The rep suggested that I create an entirely new site root, put my file structure into that, and see if the problem resolves. I did two things:
    First, I installed a completely new installation of DWCC2014 on my MacPro laptop. No existing site files of any kind on that machine. I then created a new site, using a copy of my original troublesome site's file structure. So, with the exception of the fact that this is on a machine that has no other sites or files, I am repeating the test using the exact same files and folder structure. When I click the Source Code button, I see the HTML source code. And when I click the CSS button...the CSS file displays as expected!
    Next experiment...back to my desktop MacPro. I copy the files for the site onto a completely different hard drive from the one I was using in my earlier failed attempt to get this to work. Again, same files and structure, only difference is the physical location of the files on a different hard drive. HTML source code displays, and, when the CSS button is clicked, the CSS page also displays as expected. Problem solved!
    So, I hope that my experience (and the solution) is helpful in the event others encounter this same issue. Again, this is a known issue at Adobe, so chances are good one of you out there will have this problem. The solution is to place your files in a completely new site root apart from any other that might have similar file names, so as not to "confuse" DW.

  • "Name not known" error in all PCR of the MSS Package

    Hi,
    I'm getting an error in the PCR workset of the MSS package.
    When I submit any form the error which I get is
    "Name not known.Check your entries" .
    Is this due to some problem in R/3 settings?
    Also when I submit a PCR "Request for separation(enhanced)" I get an exception.
    The log entry for this exception is as follows:
    _27##0#0#Error#1#com.sap.sup.admin.connector.AbapConnectorLauncher#Plain###Cannot start ABAP Connector Listener. Please try to configure the connection in ABAP Systems Management (Setup Local Connectivity).

    Hi Justin,
    With other words, you are using the BP for MSS 60.1.5 or later.
    Can you connect to the backend via a Java Connection?
    Also this link will guide you much further. It helped me a lot for the new MSS forms (ECC 50).
    The ISR Cookbook can be found here!
    http://www.service.sap.com/isr
    regards,
    Noel

  • New Country (South Sudan) to be set up in SAP

    Hi,
    I have to set up new country, South Sudan (SS) in SAP. I know   how to configure and also have the OSS note related. However, I cannot find the Alternative Country Key to be used. Not specified in the OSS (1620561) either. Can someone tell me how to find the Alternative Country Key for this new country??
    Thanks

    Check the below links;
    http://www.bundesbank.de/meldewesen/mw_aussenwirtschaft_schluessel.en.php
    http://www.bundesbank.de/download/meldewesen/aussenwirtschaft/schluessel/listofcountries.pdf
    I couldn't find S.Sudan in it. If you dont find in your search, may be you can check with them or SAP.
    Regards
    TGB

  • South Sudan missing

    I'm not able to change my call forwarding to South Sudan. The country is not listed in the drop box of countries. What do you suggest?
    Best,
    Miep

    Hi and welcome to the Skype Community,
    Indeed the call forwarding settings on the web account page is missing South Sudan. I've forwarded your feedback internally.
    If you have access to Skype for Windows desktop or Mac you can use the options -> Calls -> Call forwarding to set up call forwarding to South Sudan there meanwhile.
    Follow the latest Skype Community News
    ↓ Did my reply answer your question? Accept it as a solution to help others, Thanks. ↓

  • This field name is not known. on the server

    I have an issue using RPT file to generate a report using my .NET web app on the server, locally the report is generated fine, but on the server it's giving me the error "The field name is not known":
    [COMException (0x80041019): This field name is not known.
    Details: errorKind
    Error in File FormListAddons {74708A80-A1B6-494F-A141-C83C61F45047}.rpt:
    Error in formula Object_Visibility:
    '{visa_clients.addon1} = ""'
    This field name is not known.
    Details: errorKind]
      CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) +0
      CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +362
    [FormulaException: This field name is not known.
    Details: errorKind
    Error in File FormListAddons {74708A80-A1B6-494F-A141-C83C61F45047}.rpt:
    Error in formula Object_Visibility:
    '{visa_clients.addon1} = ""'
    This field name is not known.
    The line mentioned above causing the error, is a script on crystal report to suppress the field if this condition is met:
    {visa_clients.addon1} = ""
    My PC is running Crystal Report version 11, however the Crystal Report runtime on the server running the version 10.5.1.0
    Both locally and on the server, i'm using the same datasource. Even locally i'm connecting the database on the Server.
    I would appreciate your help.

    It seems i'm posting in the wrong forum, please guide where can I post this question, to find someone who could have experience with Visual Studio and Crystal Report.
    I have 3 RPT files on my project, 2 generated successfully, only one is failing, because i'm using a script on the RPT file to suppress a field if the value is null or empty.
    So the statement of Crystal Report version 11.x not working with SQL Server 2012 is totally out of the subject.
    here is my code, for someone who knows how to read it:
    CrystalDecisions.CrystalReports.Engine.ReportDocument rpt = new CrystalDecisions.CrystalReports.Engine.ReportDocument();
    System.IO.DirectoryInfo TemplatesPath = new System.IO.DirectoryInfo(System.Web.Hosting.HostingEnvironment.MapPath("~/rptTemplates"));
    string templateFile = TemplatesPath + "/" + "FormListAddons.rpt";
    rpt.Load(templateFile);
    var table = dbmgr.listClients(in_group_id);
    rpt.SetDataSource(table);
    System.IO.DirectoryInfo FilePath = new System.IO.DirectoryInfo(System.Web.Hosting.HostingEnvironment.MapPath("~/UserGeneratedReports"));
    string FileName = "FormList_" + in_group_id.ToString() + ".pdf";
    if (System.IO.File.Exists(FilePath + "/" + FileName))
    System.IO.File.Delete(FilePath + "/" + FileName);
    rpt.ExportToDisk(CrystalDecisions.Shared.ExportFormatType.PortableDocFormat, FilePath + "/" + FileName);
    rpt.Dispose();
    rpt.Close();

  • This field name is not known. for newly added fields

    dear sir,
    i ma using VS 2008 with CR.NET. There are previously dsigned reports. when I add some new Fields to the report, it prompts the error message
    [COMException (0x80041019): This field name is not known.
    Error in File C:\DOCUME1\TERESA1\ASPNET\LOCALS~1\Temp\PolicyReceipt {F0958318-C3D3-493D-9140-4CEA08B27B98}.rpt:
    Error in formula  <Address>.
    '{GetTransactionsForPolicyReceipt;1.ClientAddress_zh}+{GetTransactionsForPolicyReceipt;1.Address_zh_2}'
    This field name is not known.]
       CrystalDecisions.ReportAppServer.Controllers.ReportSourceClass.Export(ExportOptions pExportOptions, RequestContext pRequestContext) +0
       CrystalDecisions.ReportSource.EromReportSourceBase.ExportToStream(ExportRequestContext reqContext) +240
    here is the stored procedure
    select Transactions.TransactionID
                 , Transactions.PolicyDate
                 , Transactions.PolicyNumber
                 , ClientBranch.BranchName as ClientBranchName
                 , c.last_name + ', ' + c.other_name as ClientName
                 , c.last_name_zh + c.other_name_zh as ClientName_zh
                 , c.last_name as ClientLastName
                 , c.address as ClientAddress
                 , c.Address_2
                 , c.Address_3
                 , c.Address_4
                 , c.address_zh as ClientAddress_zh
                 , c.Address_zh_2
                 , c.Address_zh_3
                 , c.Address_zh_4
                 , c.email as ClientEmail
                 , c.[language]
                 , Gender.ShowName as ClientGenderName
                 , Gender.ShowName_zh as ClientGenderName_zh
                 , Institution.InstitutionName
                 , Product.ProductName
                 , FormulaType.FormulaTypeName
                 , Frequency.FrequencyName
                 , Frequency.FrequencyName_zh
                 , Frequency.FrequencyPeriod
                 , Frequency.IsLumpsum
                 , Currency.CurrencyName
                 , Currency.CurrencyName_zh
                 , Transactions.FrequencyPayment
                 , Transactions.Years
                 , Transactions.Terms
                 , Transactions.Remarks
    , c.Address_2
                 , c.Address_3
                 , c.Address_4
                 , c.Address_zh_2
                 , c.Address_zh_3
                 , c.Address_zh_4
    are newly added
    the other fields can be shown properly
    Edited by: tomckw on Oct 24, 2011 10:04 AM

    Only the RAS ( Report Application Server ) SDK includes API's to retrieve the version information. As you do not have full build of CR, you do not have the RAS SDK.
    Just as an FYI. The APIs are:
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument.MajorVersion
    CrystalDecisions.ReportAppServer.ClientDoc.ISCDReportClientDocument.MinorVersion
    A C# example code looks like this:
    MessageBox.Show("Report Version: " + (rptClientDoc.MajorVersion.ToString() + "." + rptClientDoc.MinorVersion.ToString()), "RAS", MessageBoxButtons.OK, MessageBoxIcon.Information);
    I htink your only way to tell is to take the 10.2 report, add it to your VS2008 project and save. On save, if it says something like;
    "this report was crated ina precious version of CR"
    you know it is not 10.5.
    But I do not think that is your problem here...
    - Ludek

  • "This field name is not known" error when upgrading from VS 2003 to VS 2005

    When we upgraded our web servers from VS 2003 to 2005, our crystal reports web viewer began having a problem with reports that contained sub-reports.  We now are getting the following error on the web page.  The reports were developed in Crystal 10, but I upgraded them to Crystal 11 but still recieved the same error.
    Any help would be greatly appreciated.
    thank you
    This field name is not known. Error in File C:\DOCUME1\DMDEVB1\ASPNET\LOCALS~1\Temp\CategorybyStateProductDist {B0FCB37B-A7DB-4786-AD69-55568EC94923}.rpt: Error in formula . '{usp_wd_RptCategoryByStateProductDist;1.State} = {?@State} ' This field name is not known.

    HI Karl,
    Also Try to update the database connection for the report.
    You can do that by opening report in designer, then
    Go To Database Menu -> Setdatasource Location
    Connect to the datasource you want and update the datasource.
    Save the report.
    Hope this Helps !!!
    Prasad

  • Login settings will not update the local testing server files

    When uploading to web server from local testing server, changing login settings in the control panel does not update the local testing server Restrict Access to page files. Causing login on website not to function.
    It does however update the Connections file and the login wizard form.
    What is the best way to change login settings before uploading site to web server?
    Thanks
    Dan

    Dan - I am having the same exact problem. I'm using the restrict access and user registration and login - when attempting to use the Update Record wizard to allow users to change their password or email address, it doesn't change the record.

  • How do I download a movie to my phone?  when I click 'rent' through itunes, I get a message that there is not enough available local storage, but I can manage my local device storage usage in 'Settings'.  I have activated icloud, but this has not helped.

    How do I download a movie to my iphone 3G?  When I click 'rent' in itunes, I get a message that there is not enough available local storage, but I can manage storage on my device in 'Settings'.  I have activated icloud, but don't know how to change my storage so that I can rent and watch the movie on my phone.  thanks for any help you can give.

    I always do my Rentals with the itunes program on the computer.
    Make rental from itunes store. It will show in movies under library, DO NOT click to play it. Plug in the device to the computer. Click the name of the device on left. Click on movies. There is an  option to copy to the device. Sync. obviously you still need space on ipad to put rental but you can have it take computers hard drive space until you need it.

  • How to create a pdf form allowing Reader user to insert picture - NOT from their local hard drive - but from photos I want them to choose from?

    Is there a way to create a PDF form where a Reader user can insert an image - that's NOT on their local hard drive?
    I have 4 photos available - the users of my form will choose one of them and insert it in the pdf form. The users will NOT have the photos saved on their local hard drives so ideally, they will see thumbnails or a preview of the available photos and then select and insert the photo they want to use.
    Is this possible? If so, how do I go about this? Right now, all I can find are ways to insert a photo located on the users local hard drive.
    Hopefully someone can answer my question.

    George, I'm not sure where the photos would go or how to include them. I'm a complete newbie when it comes to making pdf forms so i'm not sure if it's even possible.
    I'm planning to make a flier. I want the end user to be able to choose the photo displayed on the flier - the photos would be ones that I choose and supply. I know I could just make four different fliers, but I thought it would be more efficient if I had one flier and gave the Reader user the ability to select the photo they like.
    Does this sound possible to you?

  • Wanted to update the software now available, but it is asking for a pass code. As far as I remember in didn't put in any pass code , how do I settle this issue . Earlier updates were asking Apple ID but pass code for updating the new soft ware not known.

    Wanted to update the software now available, but it is asking for a pass code. As far as I remember in didn't put in any pass code , how do I settle this issue . Earlier updates were asking Apple ID but pass code for updating the new soft ware not known.

    Hello Kewal,
    Thank you for the details of the issue you are experiencing when trying to perform an update.  I recommend trying to update using iTunes, and as always, it is a good idea to make a backup first. 
    iOS: Back up and restore your iOS device with iCloud or iTunes
    http://support.apple.com/kb/ht1766
    Update your iPhone, iPad, or iPod touch
    http://support.apple.com/kb/ht4623
    Thank you for using Apple Support Communities.
    Best,
    Sheila M.

  • Transfer Billing document to accounting, Error: 'Object not known in COu2019

    Hi all,
    I have created an acquisition contract and subsequently created a billing document in CRM but when I try and transfer this to accounting, the system displays error message IAOM028 u2013 u2018Object not known in COu2019.  My account assignment category on the contract is EROBJ u2013Profitability Segment CO-PA, however I have tried creating acquisition contracts with other account assignments but the same error occurs, even though the controlling object exists in SAP ERP. Iu2019ve searched the SAP notes and I did see note 683886, but this affected release 4 and we are working with release 7. Any help or advice in resolving this error would be much appreciated.
    Alternatively how do I mark the item category as not relevant to CO? For now itu2019s not imperative that I post to a controlling object? The SAP help portal refers to selecting (or in my case deselecting) the Service setting in the Assign BW/CO fieldu2019 but I canu2019t find this field on the item category. Any advice again would be greatly appreciated.
    Many Thanks
    Lee

    Hello,
    The reason might be the transfer error, is due to the incomplete distribution of the order/contract to R/3 account assignment table IAOM_EXT_OBJ_INF.
    For your invoice, check entry for document number/item number. It might be missing and if so, system shows error message as you mentioned.
    If entries are missing, then the order/contracts need to be re-distributed to R/3, so that the entries are created for these missing items in the IAOM tables. The transfer process then will complete missing entries successfully.
    To re-distribute to R/3, the respective document needs to be save after making a change in the document. Unless there is a change in the document, the re-distribution will not happen.
    I hope this information may helpful to solve your issue.
    Regards,
    Harshad Patel.
    Edited by: Harshad Patel on Jan 27, 2012 8:20 AM

  • ITunes will no longer download. It says it has not been correctly localized for this language, and to run the English version. How do I do that?

    My iTunes will no longer download.
    All of a sudden I get the message "This version of iTunes has not been correctly localized for this language. Please run the English version".
    How do I fix this and run the English version again? .

    Start by trying to repair iTunes from the programs and features control panel.
    Otherwise, for general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • After  a system restore, I get an error message telling me that "This version of iTunes has not been correctly localized for this language.  Please run the English version." the E

    I did a system restore, trying to get rid of the new update (which I HATE), and now when I try to open iTunes, I get an error message telling me that "This version of iTunes has not been correctly localized for this language.  Please run the English version."  You can't change the language option unless you can open iTunes - and IT WON'T OPEN!!!  What a piece of crap!  If there existed an iTunes substitute, I would purchase it in a hot minute! 

    Strip it out and start again.
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    If you really want to roll back to 11.4 uninstall all iTunes/Apple components as described in the second box, restore the pre-upgrade version of the library as described in Empty/corrupt iTunes library after upgrade/crash, then download and install from one of these direct links:
    iTunes 11.4.0.18 for Windows (32-bit) - iTunesSetup.exe (2014-09-09)
    iTunes 11.4.0.18 for Windows (64-bit) - iTunes64Setup.exe (2014-09-09)
    tt2

Maybe you are looking for

  • Is there a way to automatically add lines to an existing PO.

    Not using auto create, thru standard or private APIs can me systematically insert new lines into an existing PO? For example consider the following scenario: ASCP Releases demand thru a Requisition. Requisition Imports into EBS and Creates a PO throu

  • Selecting a set of records with diff docs but with same docno

    Dear Oracle Gurus Consider the following Data DocNo Doctype ===== ====== 1021 PJ 1021 TJ 1022 TJ 1022 TJ 1022 PJ 1023 TJ 1024 PJ 1025 PJ 1026 PJ 1026 TJ 1027 PJ 1028 PJ 1028 TJ As specified there will be transactions involving Doctype PJ alone . and

  • HT1040 Does anyone know what this error means?

    I keep trying to order a book and it won't let me because it always says there was an error uploading! Thanks! Error(when trying to preview book) "The operation couldn't be completed. (com.apple.chameleon.pdfGenerate error 1." Thank you!

  • Why can't I download more than 3 movies on my i-pad

    I-tunes won't let me download more than 3 movies in my file.  I have converted my movies into H264 format which play great on the i-pad, but it won't let me download more than 3 movies.. Not sure why

  • What could case many pending events in a PartitionedCache?

    I am updating my Coherence cluster from 3.5 on Java 6 to 12.x on Java 8. I am running performance tests and my 2 nodes both ran out of memory. In the HPROF file, I see that the majority of the retained size is in the PartitionedCache object. It has a