Sort issues in solaris 10 based on Locale settings

Hi All -
When Locale is set to en_GB.ISO8859-1 and sort done, the output does not match the sort done on the same file with Locale set to en_US.ISO8859-1. Please note that both are using the ISO8859-1 char set. Why is the difference?
Your input will greatly help.
Thanks in advance

Different locales have different sort orders, the sort order used will be determined by the LC_COLLATE environment variable.
One example of this is given in the sort manpage;
If LC_COLLATE  is set to C, sorting will be in ASCII order.
If LC_COLLATE is set to en_US, sorting is  case  insensitive
except  when the two strings are otherwise equal and one has
an uppercase letter earlier than the  other.

Similar Messages

  • Locale Settings lost on mobile client 7.8.2.14 after creation of BIP report

    Hi All,
    we went live with BI Publisher reports (Siebel 7.8.2.14) at the beginning of June.
    Now some of our users are having trouble with their mobile web client.
    For example our colleagues in Poland have their Windows XP regional settings set to "Polish". It will make Siebel use date format for all date fields (e.g. activity start date) display as YYYY-MM-DD - this works just fine until user is creating a BIP report. After successfull report creation, all locale settings in the mobile client are lost. Instead of YYYY-MM-DD, the dates are displayed in DD.MM.YYYY and creation of new records produces and error. Also, currency and number formats are mixed up.
    I assume it's a bug - anyone hit this before?
    Edited by: Penky on Jun 17, 2011 11:38 AM

    Yes, we finally decided to do so!
    The main reason was that we had a lot of new report change requests and did not want to do the work twice (now in Actuate and then again in BIP). Also we plan our 8.x upgrade for second half of 2011 so this was already some kind of preparation, so we can completely focus on the upgrade afterwards and don't need to hassle around with the reports as well.
    issues we're still facing include "user's are not able to run reports after they change their position" or "List reports can only be run for few records, otherwise the search spec hit's an IO field's length limitation" or "report popup can not be suppressed although there's no useful information in it" (not to forget the one described in this thread) and some others.
    Well ... after 1 1/2 years since I downloaded the first integration QF the BIP journey still does not end - it's like it just started :)

  • JVM bug with Turkish locale settings (windows)

    Hello,
    There is a serious bug in all versions of java virtual machine. When you set your locale settings to Turkish language, you can not install & use database driven java applications (that needs to create a database). For example; you can't install oracle 9i or 10g, ORA-12560 arises in database creation phase; and you can't install Readerware (a book cataloger), it locks-up in database creation phase, too. Ofcourse when you change your language to English or another language the problem goes away.
    I found that the source of the problem is JVM's wrong character mapping. It fails to convert Turkish and English "i" and "I" characters correctly (they're different in Turkish).
    Is there anybody to fix this issue in the next release ?
    Thanks,...

    I logged a bug about Java's Turkish Collator implementation: http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4688797.
    I'm not sure if your issue would fall into the same category. It looks like a separate bug to me, although closely related.
    Try logging that bug, or adding this to the bug above.
    HTH,
    <rsa/>

  • When I download a jpg picture to Photoshop Elements Editor the file is stored in Documents & Settings/My Name/Local Settings/Temp but I cannot find this location on my computer.

    The pictures are attached to e-mail messages. I can get as far as Documents and Settings and my name but there is no Local Settings folder shown. Using MS search with the name of the file gives nothing. I use Windows XP and Mozilla Firefox. The file appears in Photoshop Elements and I can save it as a psd file but I cannot find either the jpg or the psd files to move them into My Pictures.

    The Local Settings folder is a hidden folder.
    (1) If the file appears in the Downloads manager (Tools menu or Ctrl+j), you can right-click it and use Open Containing Folder to get directly to it.
    (2) To be able to see hidden folders on Windows XP in general, try this:
    Open My Computer or Windows Explorer
    Tools > Folder Options > View tab
    Scroll down and look for the checkbox regarding hidden files and folders and unhide them.
    Hopefully this will resolve the issue. Any luck?
    (3) By the way, you may be able to save the images from the email message to a more convenient location by right-clicking the links and using Save Link As. (Before you open them for editing.)

  • How to save status bar background color in local settings(Windows Phone 8.1)

    I have given the user the freedom to change background colour and save it in local settings. But I am confused on how to save the status bar colour settings because I want to give the user the freedom to choose from 4-5 colours where background of status bar
    can be changed.
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    // get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    // set the status bar color
    var statusBar = StatusBar.GetForCurrentView(); // Exception Line
    statusBar.BackgroundColor = color;
    }This is what was suggested to me. Initially the app runs and saves the settings.But when the app is closed and restarted again it crashes.

    Hi shriyansh,
    Where did you call the method SaveStatusBarColor() and LoadStatusBarColor()?
    I have called your SaveStatusBarColor() in the OnNavigatedFrom method and called the LoadStatusBarColor() in the OnNavigatedTo method, it worked very well in my side.
    So I can not reproduce your issue.
    Here are my code and result, please try to check it:
    public class test
    public Color colors { get; set; }
    public sealed partial class MainPage : Page
    List<test> testdemo = new List<test>();
    public MainPage()
    this.InitializeComponent();
    testdemo.Add(new test() { colors = Colors.Red });
    testdemo.Add(new test() { colors = Colors.Green});
    testdemo.Add(new test() { colors = Colors.Gray});
    testdemo.Add(new test() { colors = Colors.Blue });
    this.NavigationCacheMode = NavigationCacheMode.Required;
    public static void SaveStatusBarColor()
    // get status bar color
    var statusBar = StatusBar.GetForCurrentView();
    var color = statusBar.BackgroundColor;
    // convert color to hex string
    var hexCode = color.HasValue ? color.Value.ToString() : "";
    // store color in local settings
    ApplicationData.Current.LocalSettings.Values["StatusBarColor"] = hexCode;
    public static void LoadStatusBarColor()
    //get color hex string from local settings
    var hexCode = ApplicationData.Current.LocalSettings.Values["StatusBarColor"] as string;
    if (string.IsNullOrEmpty(hexCode))
    return;
    // convert hexcode to color
    var color = new Color();
    color.A = byte.Parse(hexCode.Substring(1, 2), NumberStyles.AllowHexSpecifier);
    color.R = byte.Parse(hexCode.Substring(3, 2), NumberStyles.AllowHexSpecifier);
    color.G = byte.Parse(hexCode.Substring(5, 2), NumberStyles.AllowHexSpecifier);
    color.B = byte.Parse(hexCode.Substring(7, 2), NumberStyles.AllowHexSpecifier);
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = color;
    statusBar.BackgroundOpacity = 1;
    protected override void OnNavigatedTo(NavigationEventArgs e)
    LoadStatusBarColor();
    protected override void OnNavigatedFrom(NavigationEventArgs e)
    SaveStatusBarColor();
    private void ChangeColorButton_Click(object sender, RoutedEventArgs e)
    var statusBar = StatusBar.GetForCurrentView();
    statusBar.BackgroundColor = testdemo[Convert.ToInt32(Mytextbox.Text)].colors;
    statusBar.BackgroundOpacity = 1;
    The result:
    Best Regards,
    Amy Peng
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Error Saving Localized Settings mean?

    In the last month or so, I have received the following message when trying to open videos on the web and even my local weather forecast:
    "Error Saving Localized Settings
    Application is unable to access your file system "
    I get it in Safari (6.0.5) as well as Firefox.
    What does it mean?

    Good morning:
    This is not a new problem as evidenced by some web blogs going back three years.
    It started when I disabled Java Script......the victim of a lot of cautionary items on its security issues.
    Then odd things wouldn't play such as the hour-by-hour temperature display on a local TV station's site.
    And occasional video links off reputable news sites. But not Youtube.  Safari and Firefox are both afflicted.
    I enabled Java, repaired disk permissions (which I do on a regural basis) plus a few other tricks I know.
    Upgrades, etc., all  up to date.
    No luck.
    I have had three I-Macs over 13 years and Apple Care for 12 of those years.  Gawd how I miss 'em!
    I'll try your suggestions.
    Thank you!

  • Sorting Issue in T-Code CS15

    please help me out, i am facing an issue with the CS15, that in EN login it sorts the field 'Required Quantity(DIMNG)' well on the output, & when i try to Sort the same field in FR login, it does not Sort good.
    i am Sorting this field with the Sort Toll provided with the header of field.
    & if there is any OSS note also then please suggest me well
    << Moderator message - Everyone's problem is important. Please do not ask for help quickly. >>
    Edited by: Rob Burbank on Dec 10, 2010 3:57 PM

    >
    wisetak wrote:
    > please help me out, i am facing an issue with the CS15, that in EN login it sorts the field 'Required Quantity(DIMNG)' well on the output, & when i try to Sort the same field in FR login, it does not Sort good.
    > i am Sorting this field with the Sort Toll provided with the header of field.
    >
    > & if there is any OSS note also then please suggest me well ASAP.
    Dear,
    Is the field on which you are trying to sort is a text based field?
    Regards,
    Prasobh

  • Discounts - Local Settings for Prepayment of Invoice

    I have a client who wants to show on their invoices the discount amount if paid prior to the payment terms.
    For db's set up with the Local Settings being UK this can be shown. Refer to 'Multisports Limited' demo company, using invoice layout 'Invoice Master Template'.
    I am based in Australia, and if i copy the format including system variables from the UK db, the invoice doesn't work. What fields do i need to put on the invoice? You can't link the fields to a db field as the fields are a calculation and are not stored anywhere. When i refer to the System Variables in the UK db, i can't find where they are referenced to so i can't determine what the system variables are for the Aus db.
    Any help would be greatly appreciated.

    Mevyn,
    The forum that you have posted your question in is for questions related to the SAP Business One Integration for SAP NetWeaver.  Your question seems to be related to the SAP Business One application.  You may get a quicker response by posting your question in the SAP Business One Discussion Forum located here ...
    http://cpsn-channel.sap.com/businessoneforum
    HTH,
    Eddy

  • [ADOBE] Locale settings: country different than language

    Hello ABAPers.
    I'm getting started with Adobe forms and I have encountered an issue with locale settings.
    I support multilingual and international system. This means I have to respect both formats of figures. One thousand may look as follow:
    1,000.00 or 1000.00 (English formatting used by Japan, UK, USA, etc.)
    1.000,00 or 1000,00 (European formatting used by rest of the world)
    When printing Adobe form, I pass structure of type sfpdocparams. In thi structure I have 2 important fields:
    - LANGU -> it impacts on texts language
    - COUNTRY -> it should impact on locale, which means formatting of figures and dates.
    If I pass LANGU='E' and COUNTRY='EN' it behaves properly
    If I pass LANGU='D' and COUNTRY='DE' it behaves properly (I get European formatting)
    If I pass LANGU='L' and COUNTRY='PL' it behaves properly (I get European formatting)
    If I pass LANGU='E' and COUNTRY='PL' I get a problem. I have then English language (correct) and English formatting (error!)
    If I pass LANGU='L' and COUNTRY='DE' I also have a problem. Language is determined correctly (Polish), but formatting is English even though both Germany and Poland use European formatting.
    I have tested all possible combinations of langu/country. Above are just examples. The conclusion is as follow:
    If language is not in line with country, Adobe takes locale en_US or en_GB. I've checked file trace.txt from PDF generation. I've found something like this: "System locale: en_GB".
    I have saved my XFD.xml file from printout with settings LANGU='E' and COUNTRY='PL'. Printout was broken, but when using this XFD for preview in designer, I get correct formatting.
    Originally form's locale was English (it's a copy from standard form SD_SDOC_FORM01), but I have changed it to Polish (European formatting) - it didn't help.
    I have checked also that print program uses a statement SET COUNTRY.
    Only Idea I have now is to control formatting using scripting in FormCalc or JavaScript. FormCalc delivers function to control locale of date fields:
    $.format.picture = DateFmt(1, $.locale);
    but I couldn't find any of such functions to control figure's formatting.
    Or maybe it's some server setting? If so, then how to manage it?
    Please advise,
    Michał

    Hi guys.
    I've found a workaround. I can use scripting:
    $.locale = "pl_PL" (or any other European)
    with some logical restrictions naturally. I will have to check variable COUNTRY first.
    Yet it's not a nice solution. I have to enter this script into each numeric field in the form, so if anyone knows the proper solution (SAPnote, ot print server settings), please share.
    regards,
    Michał

  • Is there a way from where I can restore my profile from a back-up that I took from a folder (e.g \Local Settings\Application Data\Mozilla\Firefox\Profiles\)

    Before re-installing Firefox 19, I mistakenly took backup of my profile from a folder - C:\Documents and Settings\garan14\Local Settings\Application Data\Mozilla\Firefox\Profiles and not from C:\Documents and Settings\garan14\Application Data\Mozilla\Firefox\Profiles.
    While installing, I selected "Delete the old profiles" option and I don't see any old profile folder under C:\Documents and Settings\garan14\Application Data\Mozilla\Firefox\Profiles.
    However, I have a lot of important data saved under that profile which now has got deleted.
    Is there any way I can still restore the data from old profile? (P.S.: As mentioned above, I have a back-up of profile folder which resides under Local Settings folder)
    I am in a desperate need for the help. Pls reply as soon as possible.

    i have some problem. i delete firefox profile and i cannot use mozilla right now. can you help me ? thank you

  • Issue with form based Authentication in three tier sharepoint 2013 environment.

    Hi,
    We are facing issue with form based Authentication in three tier environment.
    We are able to add users to the database and in SharePoint.
    But we are not able to login with created users.
    In single tier everything working fine
    Please help , Its urgent ... Thanks in advance.
    Regards,
    Hari
    Regards, Hari

    if the environments match, then it sounds like a kerberos double-hop issue
    Scott Brickey
    MCTS, MCPD, MCITP
    www.sbrickey.com
    Strategic Data Systems - for all your SharePoint needs

  • How do I sort my whole spreadsheet based on one row?

    I'm using Numbers on my iPad to inventory a school's computer systems.  I'm kind of doing it slowly as I get time, so I'm not inventorying in any particular order.  I just go in a room when I get a chance and then inventory everything in it. 
    I have different columns for room, asset #, make, model, serial, inventory date
    Just a few minutes ago, I was trying to sort my sheet by the asset # so I could see what gaps I have in the asset numbers.  I selected the top bar and it highlights the whole column.  Then I select sort and it only sorts the one column, which then totally screws up my sheet because my asset numbers are next to different random PCs that I just happened to inventory first.  So, of course, I undo it.  But I would like to be able to sort by asset # and have it sort all the cells based on the asset #, or sort by make or model and then I could see all the computers with a certain make or model and where they're at.  There has to be a way to do this.

    I probably said it backwards.  I've been calling them columns...  I think I mean rows.  The rows have data up and down.  I want to sort it so the lowest values at the top and highest values at the bottom.  But I want all the other cells to stay sorted.  Right now if I just select sort for the row, it sorts the one row and not the rest of them so it totally messes up my sheet.
    It's just an inventory that I have a field that says make, model, asset #, serial, room #, etc.
    I'd like to sort by asset # to see all the PCs and if I have a gap.  Then I'd like to sort it by room number so when I walk in a room, I can tell if I missed a PC in the room and verify what I have.  Then I might want to sort by the year row when we decide to upgrade so I can put all the oldest PCs first.  But if it just sorts the row and not all the other columns in the row, it totally messes up my sheet.  It just puts my years of pc from oldest to newest but didn't sort the rest of the fields.  In Excel, if I do that, it sorts all the fields based on the one row.
    I'm not sure how to give you a screenshot off my ipad.

  • Firefox is creating endless copies of C:\Documents and Settings\Catain Kirk\Local Settings\Application Data\Mozilla\Firefox\Profiles\afbrfhnj.default\Cache ... how do I stop it

    I just installed 9.0.1 and it continually creates copies of C:\Documents and Settings\Catain Kirk\Local Settings\Application Data\Mozilla\Firefox\Profiles\afbrfhnj.default\Cache ... how do I stop it !!!
    I'm running Windows XP Version 5.1 SP3.

    Hi,
    That is the disk cache of Firefox, where contents of loaded pages are kept for faster retrieval and it also helps to conserve bandwidth. To disable this: '''Tools''' ('''Alt''' + '''T''') > '''Options''' > '''Advanced''' > '''Network''', check (tick) '''Override automatic cache management ''' and put the value at zero.
    [https://support.mozilla.org/en-US/kb/Options%20window%20-%20Advanced%20panel?as=u#advanced_network Cache]
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

  • Change error message based on locale

    HI experts,
    I have 2 applicaions .
    one contains task flow containing 1 jsff having one input text required property set to true.
    other contains page template to switch language based on locale.
    now if I put both page template and input text in one application it works fine with error message in appropriate language.
    but if I import task flow into other application as adf jar file and insert TF as region then it gives error message always in english and ok button in appropriate locale.
    can you suggest some solution for this.
    JDEV - 11.4

    These links may use for you get solution
    Localization
    Localization
    Localization Supported Languages
    JDeveloper 11g - Localization Supported Languages
    How to configure code to ResouceBundle in Localization
    Re: How to configure code to ResouceBundle in Localization

  • Can external users change their language, time zone, and locale settings?

    Hi,
    We’re migrating our hosts from WebEx cloud to our on-prem solution right now (CWMS 1.5.1.323.A).
    We’ve learned that CWMS 1.5 does not provide an online address book where hosts could customize language, time zone, and locale settings for their external attendees.
    Do external users have any chance at all to change their language, time zone and locale settings individually?
    Thank you,
    Helge

    Hi Dejan,
    "external users" are those participants, who do not have an LDAP account in our deployment, since they are not intendet to act as hosts: our stakeholders, partners, customers, clients.
    It looks, as if these people would stick to the systems' default language / time zone / locale.
    We are wondering if there might be a CWMS-component like this:
    https://artcom.webex.com/cmp0307l/webcomponents/widget/preference.do?serviceType=MC&siteurl=artcom&target=Page&backUrl=%2Fmw0307l%2Fmywebex%2Fdefault.do%3Fsiteurl%3Dartcom%26service%3D1
    to allow those "extenal" participants to make their adjustments.
    Thank you,
    Helge

Maybe you are looking for