Correct Sorting for Indices (Danish / Norwegian)

Using InDesign 5.0.4 and generqating Index for Norwegian cities using "Danish/Norwegian" sort order.
I now get:
Holmestrand s.110
Hønefoss s.111
Horten s.111
Jessheim s.112
Note that æ, ø and å are distinct letters in our alphabet and comes after z, hence correct sort order is:
Holmestrand s.110
Horten s.111
Hønefoss s.111
Jessheim s.112
As of now, å comes out right, haven't tested æ (rare letter) but ø is considered equivalent with o, it is not!
Agnar

Yup, this was certainly a complaint in CS3, but it isn't going to change in CS3 now that CS5.5 is the current release.
I don't know if the problem has already been fixed in a later version or not, but perhaps one of our scandinavian users knows.

Similar Messages

  • Danish/Norwegian/International sort orders

    I am submitting this in both a Java JDBC and in a Microsoft SQL Server 2000 forum else where:
    Scenario:
    We have varcahr fields in SQLServer 2000 database at 8.00.760 that are getting some odd/different results:
    Value we are trying to find is ZXYAA001
    FIrst: SELECT * FROM objecttable where name like 'ZXY%'
    Second: SELECT * FROM objecttable where name like 'ZXYA%'
    Third SELECT * FROM objecttable where name like 'ZXYAA%
    Collation sequence is Danish_Norwegian_CI_AS
    When we do the search using JDBC we get returned:
    In First we find ZXYAA001 as part of list..
    In Second we do not find ZXYAA001 as part of list
    In Third we find ZXYAA001 as part of list
    We believe this is so because in Danish Norwegian the AA is treated as A with a ring over which I believe is described as A Ring and not as two A so when looking for LIKE ZXYA% it doesn't recognize the AA as being met by the ZXYA%
    Is this what someone would expect.. Our users report it as an error but I am not sure that it is wrong based on the database language settings.
    Does anyone know of anyway I can construct that to let it find the AA as really two AA without changing database languages/code tables. Is it that we are using the % and should be using something else.
    I realize that this is probably going to be an issue for the SQL Server people and not JDBC but just thought I would take a chance... Any validation of above theories would be appreciated and definitely and solution.
    What we are wondering is there someway to change this behavior with the query or some setting in JDBC.
    Paul

    Have you tried using a prepared statement and the setString() with SQL that looks like the following?
    ....where name like ?

  • Unable to get correct sort order for subquery

    Hi,
    I have this complex subquery and I am sort of stuck on how to get the correct sort order. Here is the query
    select *
    from
    (select r.ResultsId, r.TestName, p.ProjectName, h.PhaseName,
    t.TypeText, s.StationName,
    to_char(max(r.ExecutionStartDate) over
    (partition by r.TestName, b.ConfigValue, .ConfigValue,
    d.ConfigValue),
    'DD MON YYYY HH24:MI:SS'), r.Owner, t.Status,
    b.ConfigValue Language, c.ConfigValue Telemetry,
    d.ConfigValue Flex
    from Results r, Projects p, Phase h, Type t, Station s, Status t,
    ConfigResults b, ConfigResults c, ConfigResults d
    where
    r.resultsId = b.resultsId and
    r.resultsId = c.resultsId and
    r.resultsId = d.resultsId and
    b.configurationid = 1 and
    c.configurationid = 2 and
    d.configurationid = 3 and
    r.projectid = p.projectid and
    r.statusid = t.statusid and
    h.PhaseId = r.PhaseId and
    t.TypeId = r.TestTypeId and
    s.StationId = r.StationId and %s
    Order By
    r.TestName, b.ConfigValue, c.ConfigValue, d.ConfigValue)
    order by resultsid
    My results are sorted by TestName, ConfigValue but I am trying to the
    results sorted by resultsid
    Any assistance would be greatly appreciated.
    Thanks,
    Jeff

    What happens if you add an order by r.resultsid to your order by statement directly in your subquery rather than doing an order by later?
    It will not work because I need to specify the exact fields that I use in
    the partition by statement.
    Jeff

  • Webi 4.0 Custom Sort for SSAS Hierarchy

    Hi,
    I'm using SSAS cube as a source for my webi report .Some report need custom sorting for hierarchy object , we are not able to apply sorting correctly in webi.
    What do i need to do in order to apply the custom sorting for hierarchy object?  Thanks.

    Hi, I've written a post on this:
    http://blog.davidg.com.au/2011/09/dynamic-measures-in-webi-on-any-data.html
    ...and a few people in the comments seemed to have the same problem as you, which seems to be a bug (clicking the ellipsis does not launch the custom values screen).
    Perhaps you could try the solution offered by Gallin, which was to create a second input control, then retry the steps to create another input control and click the ellipsis to enter custom values.
    Hope that helps.

  • Can't open i tunes on my computer. I get the message "This version of i Tunes has not been correctly localized for this language..."

    can't open i tunes on my computer. I get the message "This version of i Tunes has not been correctly localized for this language..."

    I'm on a PC and have uninstalled an re-installed Itunes.That sorts out Windows but knocks out the network adaptors which means i can't get onto the web! So its either no iTunes or no web it seems. I've fully updated Windows andam  now scratching my head. Any ideas are welcome. Thank you

  • Cannot see correct partition for Vista

    Trying to install Vista Ultimate 64 bit on a mac pro (2008) on it's own hard drive. Questions- when I installed the new drive the machine doesn't recognize it and asks me if I wanted to initialize this. Rightly or wrongly I skipped this, went to boot camp assistant, selected the newly installed hard drive and indicated that I want to create a single partition for windows, then it asked me for the windows OS,I started the install. When it came to the point where I needed to select the correct partition for windows, the correct selection according the instructions disk0partition3 bootcamp didn't show up as an option and I cancelled the install. Where did I go wrong?
    Thanks

    I recommend that you view the files on your windows 8 system to verify that they are good. That will atleast stop the sweating.
    A few things could be wrong with the vista system.
    1) The correct fonts may not be installed or are corrupted
    2) The video card driver needs updating
    3) The preference file for illustrator is corrupted try restarting illustrator while holding down ctrl-alt-shift or command-option-shift (former=windows latter=mac)
    4) Illustrator needs updating
    5) Time to upgrade from Vista (If your system can support it, it may be wise to do so anyway, since MS is not supporting it either)

  • Can't figure out the correct syntax for this select statement

    Hello,
    The following statement works great and gives the desired results:
    prompt
    prompt Using WITH t
    prompt
    with t as
       select a.proj_id,
              a.proj_start,
              a.proj_end,
              case when (
                         select min(a.proj_start)
                           from v b
                          where (a.proj_start  = b.proj_end)
                            and (a.proj_id    != b.proj_id)
                        is not null then 0 else 1
              end as flag
         from v a
        order by a.proj_start
    select proj_id,
           proj_start,
           proj_end,
           flag,
           -- the following select statement is what I am having a hard time
           -- "duplicating" without using the WITH clause
            select sum(t2.flag)
              from t t2
             where t2.proj_end <= t.proj_end
           ) s
      from t;As an academic exercise I wanted to rewrite the above statement without using the WITH clause, I tried this (among dozens of other tries - I've hit a mental block and can't figure it out):
    prompt
    prompt without with
    prompt
    select c.proj_id,
           c.proj_start,
           c.proj_end,
           c.flag,
           -- This is what I've tried as the equivalent statement but, it is
           -- syntactically incorrect.  What's the correct syntax for what this
           -- statement is intended ?
            select sum(t2.flag)
              from c t2
             where t2.proj_end <= c.proj_end
           ) as proj_grp
      from (
            select a.proj_id,
                   a.proj_start,
                   a.proj_end,
                   case when (
                              select min(a.proj_start)
                                from v b
                               where (a.proj_start  = b.proj_end)
                                 and (a.proj_id    != b.proj_id)
                             is not null then 0 else 1
                   end as flag
              from v a
             order by a.proj_start
           ) c;Thank you for helping, much appreciated.
    John.
    PS: The DDL for the table v used by the above statements is:
    drop table v;
    create table v (
    proj_id         number,
    proj_start      date,
    proj_end        date
    insert into v values
           ( 1, to_date('01-JAN-2005', 'dd-mon-yyyy'),
                to_date('02-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 2, to_date('02-JAN-2005', 'dd-mon-yyyy'),
                to_date('03-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 3, to_date('03-JAN-2005', 'dd-mon-yyyy'),
                to_date('04-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 4, to_date('04-JAN-2005', 'dd-mon-yyyy'),
                to_date('05-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 5, to_date('06-JAN-2005', 'dd-mon-yyyy'),
                to_date('07-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 6, to_date('16-JAN-2005', 'dd-mon-yyyy'),
                to_date('17-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 7, to_date('17-JAN-2005', 'dd-mon-yyyy'),
                to_date('18-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 8, to_date('18-JAN-2005', 'dd-mon-yyyy'),
                to_date('19-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           ( 9, to_date('19-JAN-2005', 'dd-mon-yyyy'),
                to_date('20-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (10, to_date('21-JAN-2005', 'dd-mon-yyyy'),
                to_date('22-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (11, to_date('26-JAN-2005', 'dd-mon-yyyy'),
                to_date('27-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (12, to_date('27-JAN-2005', 'dd-mon-yyyy'),
                to_date('28-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (13, to_date('28-JAN-2005', 'dd-mon-yyyy'),
                to_date('29-JAN-2005', 'dd-mon-yyyy'));
    insert into v values
           (14, to_date('29-JAN-2005', 'dd-mon-yyyy'),
                to_date('30-JAN-2005', 'dd-mon-yyyy'));

    Hi, John,
    Not that you asked, but as you proabably know, analytic functions are much better at doing this kind of thing.
    You may be amazed (as I continually am) by how simple and efficient these queries can be.
    For example:
    WITH     got_grp          AS
         SELECT     proj_id, proj_start, proj_end
         ,     proj_end - SUM (proj_end - proj_start) OVER (ORDER BY  proj_start)     AS grp
         FROM     v
    SELECT       ROW_NUMBER () OVER (ORDER BY grp)     AS proj_grp
    ,       MIN (proj_start)                         AS proj_start
    ,       MAX (proj_end)               AS proj_end
    FROM       got_grp
    GROUP BY  grp
    ORDER BY  proj_start
    ;Produces the results you want:
      PROJ_GRP PROJ_START  PROJ_END
             1 01-Jan-2005 05-Jan-2005
             2 06-Jan-2005 07-Jan-2005
             3 16-Jan-2005 20-Jan-2005
             4 21-Jan-2005 22-Jan-2005
             5 26-Jan-2005 30-Jan-2005This is problem is an example of Neighbor-Defined Groups . You want to GROUP BY something that has 5 distinct values, to get the 5 rows above, but there's nothing in the table itself that tells you to which group each row belongs. The groups are not defined by any column in hte table, but by relationships between rows. In this case, a row is in the same group as its neighbor (the row immediatly before or after it when sorted by proj_start or proj_end) if proj_end of the earlier row is the same as proj_start of the later row. That is, there is nothing about 03-Jan-2005 that says the row with proj_id=2 is in the first group, or even that it is in the same group with its neighbor, the row with proj_id=3. Only the relation between those rows, the fact that the earlier row has end_date=03-Jan-2005 and the later row has start_date=03-Jan-2003, that says these neighbors belong to the same group.
    You're figuring out when a new group starts, and then counting how many groups have already started to see to which group each row belongs. That's a prefectly natural procedural way of approaching the problem. But SQL is not a procedural language, and sometimes another approach is much more efficient. In this case, as in many others, a Constant Difference defines the groups. The difference between proj_end (or proj_start, it doesn't matter in this case) and the total duratiojn of the rows up to that date determines a group. The actual value of that difference means nothing to you or anybody else, so I used ROW_NUMBER in the query above to map those distinct values into consecutive integers 1, 2, 3, ... which are a much simpler way to identify the groups.
    Note that the query above only requires one pass through the table, and only requires one sub-query. It does not need a WITH clause; you could easily make got_grp an in-line view.
    If you used analytic functions (LEAD or LAG) to compute flag, and then to compute proj_grp (COUNT or SUM), you would need two sub-queries, one for each analytic function, but you would still only need one pass through the table. Also, those sub-queries could be in-line views; yiou would not need to use a WITH clause.

  • "Old" table sorter for NW04

    Hi all,
    I'm using the "old" table sorter for Web Dynpro on a Netweaver 04 system. Everything is working correctly, but I don't know how to call the sort function without clicking on the Table Header.
    How can I automatically sort my table at runtime, the first time the table is shown?
    Is this possible?

    Hi  Palen
    I do think this facility is introduced with 04s.
    /people/bertram.ganz/blog/2006/03/07/enhanced-web-dynpro-java-tablesorter-for-sap-netweaver-04s
    This weblog says something about it.(Hope you have not read it ye
    Regards
    Pratyush

  • What is the correct cable for iMac 11,2 Intel core i3, mini dvi to vga or mini display port to vga?

    What is the correct cable for iMac 11,2 Intel core i3, mini DVI to VGA or mini display port to VGA to hook up to projector? Thanks!

    mini-DisplayPort.
    Regards.

  • HT201269 When I plug my iPhone 5s into the computer to restore it from iTunes a pop-up comes up and says "this version of iTunes has not been correctly localized for this language. Please run the English version." I have no idea what that means or how to

    In need of help figuring this phone stuff out! I am trying to get all the apps from my husbands old phone to his new one. I have already backed up the old phone and got everything onto iTunes, but every time I plug the new iPhone 5s into my computer it says that the version of iTunes is not correctly localized for this language and asks for me to run the English version. I have no idea how to do that? Please help.

    Hi Celia51510,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots. 
    I can't tell from your post if you are using a Windows or a Mac Computer.
    Try deleting the iTunes application and redownloading the version you need below:
    iTunes 11.1 Download for Mac
    http://support.apple.com/kb/DL1614
    iTunes 11.1 for Windows (64-bit)
    http://support.apple.com/kb/DL1615
    Cheers,
    - Judy

  • Laptop says 'This version of iTunes has not been correctly localised for this language. Please run the English Version'. Can anyone help please, have no idea what to do and haven't used laptop in over a year. iPad/iPhone have lost tunes from laptop too.

    my laptop will not open iTunes, as it just says 'This version of iTunes has not been correctly localised for this language. Please run the English version'. I have not synconised my iPhone 5S or iPad 2 with iTunes for well over a year. I noticed the music which had previously been put into iTunes has dissappeared from my phone and iPad. I also want to remove some movies from my iPad and iPhone and there is no way I can do this without being able to manually sync with the Laptop which is running windows 7. Has anyone else come across this and please can you help? I am no expert in fact I know very little about the Laptop, it is my Husbands baby but he doesn't understand anything to do with Apple including iTunes. I will need any advise explained step by step please.

    Hi Shelady,
    Try downloading and reinstalling the latest version of iTunes from the first link below. If that doesn't do it, the suggestions in the second article should resolve the installation issue.
    Apple - iTunes - Download iTunes Now
    http://www.apple.com/itunes/download/
    Removing and reinstalling iTunes and other software components for Windows Vista, Windows 7, or Windows 8
    http://support.apple.com/kb/HT1923
    -Jason

  • Unable to create Correction Delivery for Sales Agreement

    We are having the issue of not being able to create correction deliveries for ceartain Scheduling Agreements.  I enter in a valid scheduling agreement number into transaction VA32, click the "JIT DlSch" button, click "Corr. Delivery" button and then enter in a date and quantity.
    After I hit "Save" button, I am taken back to the initial VA32 screen and see the following message...
    Sched. Agr. w/ Rel. ####### has been saved (no delivery created)
    Message no. V1261
    Does anybody have any insight to why this is happening?  Thanks in advance.
    Mike

    Hi,
    What is the Correction Delivery Type that you used? Please check in the definition of Sales Document VOV8 (Scheduling Agreement) in 'Corr. delivery type' field under 'Scheduling Agreement' section.
    And also, please refere to the links below. These may provide you with some additional information:
    http://help.sap.com/saphelp_45b/helpdata/en/4b/3f4486a38a11d194e900a0c9306794/content.htm
    http://help.sap.com/saphelp_46b/helpdata/en/35/b0e85787a62488e10000009b38f9b7/content.htm
    Regards,
    Raja

  • Stock Ledger Report in Day Wise not giving correct values for Opening Stock

    Dear Experts,
    I m working on Sock ledger report to give the day wise data.
    since yesterdays closing Stock will become opening stock of today,
    To get Opening Stock,
    I have restricted the stock key figure with 2 variables on calday        
                                  (DATE FROM var with <=(Lessthan or equal to) and offset -1
                                   DATE TO      var with <=(Lessthan or equal to) and offset -1)
    To get Closing Stock,
    I have restricted the Stock key figure with 2 variables on calday        
                                  (DATE FROM var with <=(Lessthan or equal to)
                                   DATE TO      var with <=(Lessthan or equal to) )
    But in the output Opening stock values are not coming correctly and for given range of dates,
    for last date, opening stock is showing as Zero.
    Could you please tell me how can I achieve the correct values for opening stock.
    Thanks in advance.

    Hi Arjun,
    Seems like you are making it more complicated. What is your selection screen criteria?
    Ideally you should only use the offset.
    You will have say Calday in rows and stock in Column
    ____________Opening Stock_____________Closing Stock
    01/06/2009___(Closing stock of 31/05/2009)_(Stock of 01/06/2009)
    02/06/2009___(Closing stock of 01/06/2009)_(Stock of 02/06/2009)
    03/06/2009___(Closing stock of 02/06/2009)_(Stock of 03/06/2009)
    So, from above scenario, create one RKFs and include Calday in it. Create a replacement path variable on calday and apply the offset as -1.
    So, your Opening Stock will be calculated by closign stock of previous day.
    - Danny

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • Ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " help me

    ok... i am trying to sign into my apple account in the itunes store on my ipod and i have all the correct data for my credit card and it says " your payment information does not match your banks records. try again or nenter a new payment method. " what does this mean and how can i fix it??

    - See:
    ]iTunes Store: My credit card's security code or zip code does not match my bank's records
    - If still problem contact iTunes by:
    Contact iTunes

Maybe you are looking for

  • Inability to export from Indesign and save over exiting PDF on Mac Yosemite

    When I export an InDesign document to save as a PDF, it only works if the PDF doesn't already exist. If I try to replace a file, I get the error File is Open. Needless to say, the file is not open. I'm using InDesign CC 2014 Release and a Mac updated

  • UCCE - multiple IVR access

    I have a customer with UCCE 7.5, with 2 IP IVRs (configured as type 2) The customer has a new business requirement, that would require ICM scripting to access/use one, then the other, of the IP IVRs at different times during a call, possibly needing

  • Alternative for Guided Navigation

    Hi Al, I have a scenario!! If the number of record count is greater den 30 then a report without legends is displayed and if less then 30,report with legends is displayed.. This I hv implemented.. but its taking 2 clicks to generate the report.. So c

  • Distribute JMS Queues and ConnectionFactories

    Hi,           Iam using Queues with filestore as persistence type. The Queues ,Conextion Factories are configured on Server A and Server B . Both are on different IP's. The MDB's are deployed on both the servers.           When a message is send from

  • SCCM2012 Content Validation Failing - SMSPKGSIG

    Hi all, We have a main site server, and 15 distribution points. We recently had to move the distribution shares using ContentLibraryTransfer.exe on three DPs due to space requirements. Since then we've had issues getting content to the three DPs. I'v