Iterator.sort() with compareFunction. Possible?

Hi!
I am in big problem. I am sorting a DataSet fed by XML, that
includes styled HTML. Because of that sorting doesn't work right,
'cos on some rows there are <b> tags...
I would like to cleanup fields before sorting, however using
compareFunction by which I could achieve that is not possible in
sortOn function. On the other hand i cannot use sort 'cos i presume
that it can be only used for one dimensional arrays...
Here is my code...

Hi Petra,
for your first problem you need to do some conversion.
And for that it would be useful to have a unit assigned to that 'Order Icome' number.
But let's assume you have pieces. The according unit from Table T006 is 'ST'.
Consider the following lines of coding:
data:
        lv_numc                 type      string,
        lv_quant                type      fquan,
        lv_conv_quant(20)       type      c.
lv_numc = '00000000000023456'.
lv_quant = lv_numc.
write lv_quant to lv_conv_quant unit 'ST' no-sign.
lv_conv_quant should contain '23.456'. The '.' depends on your user settings in SU01.
Your second problem is not stated clear enough. Sorry, nothing comes to my mind.
regards,
Ulli

Similar Messages

  • Dynamic SORT with multiple components

    Hi all,
    I want to sort an internal table in this way:
    SORT itab BY (component).
    This is not difficult if "component" contains the name of ONE column of itab. But - and here is my problem - how can I sort with multiple components?
    Like this:
    SORT itab BY (comp_1) (comp_2) ... (comp_N).
    The number of components (N) shall be flexible. It is not possible to concatenate the components into one string-variable. This causes an error ITAB_ILLEGAL_COMPONENT.
    Brillant would be a solution which also contains the sort-direction (ASCENDING or DESCENDING for each component like this:
    SORT itab BY (comp_1) (dir_1)
                 (comp_2) (dir_2)
                 (comp_N) (dir_N).
    Is there a way to do so?
    Thanks for all hints!
    Mathias

    Hi Matahias ...
    From ABAP help...
    SORT itab.
    Extras:
    1. ... BY f1 f2 ... fn
    2. ... ASCENDING
    3. ... DESCENDING
    4. ... AS TEXT
    5. ... STABLE
    The syntax check performed in an ABAP Objects context is stricter than in other ABAP areas. See Field symbols not allowed as sort criterion.
    Effect
    The entries in the internal table are sorted in ascending order using the key from the table definition (DATA, TYPES).
    Addition 1
    ... BY f1 f2 ... fn
    Effect
    Uses the sort key defined by the sub-fields f1, f2, ..., fn of the table itab instead of the table key. The fields can be of any type; even number fields and tables are allowed.
    You can also specify the sort fields dynamically in the form (name). If name is blank at run time, the sort field is ignored. If itab is a table with a header line, you can also use a field symbol pointing to the header line of itab as a dynamic sort criterion. A field symbol that is not assigned is ignored. If a field symbol is assigned, but does not point to the header line of the internal table, a runtime error occurs.
    If the line type of the internal table contains object reference variables as components, or the entire line type is a reference variable, you can use the attributes of the object to which a reference is pointing in a line as sort criteria (see Attributes of Objects as the Key of an Internal Table
    You can address the entire line of an internal table as the key using the pseudocomponent TABLE_LINE. This is particularly relevant for tables with a non-structured line type when you want to address the whole line as the key of the table (see also Pseudocomponent TABLE_LINE With Internal Tables).
    If you use one of the additions 2 to 5 before BY, it applies to all fields of the sort key by default. You can also specify these additions after each individual sort field f1, f2, ..., fn. For each key field, this defines an individual sort rule which overrides the default.
    Cheers
    Preetham

  • Sorting with BINS

    Hello people,
    My problem is the following:
    I have 2 columns: C1 and C2.
    The C1 I filter and sort with case.
    The C2 I didn't filter but I use BINS... like, if C2 is something group this in "Others"
    Now, I need to sort this C2, but is not too simple like C1. I'll try to show why:
    TEXT 1 ---------------------------------------
    C1 C2
    C1 C2
    C1 C2
    C1 C2
    TEXT 2 ---------------------------------------
    C1 C2
    C1 C2
    C1 C2
    When I told that I sort C1 with case, is simple, because C1 is not depending to TEXT 1 or TEXT 2.
    C2 is different because depends to TEXT 1 and TEXT 2, and besides this when I sort, the group "Others" appears more than 1 time like as the attributes are:
    If a group cat, dog and bird in "Others" and sort this, didn't sort the Others one time, appears Others 3 times (Trying to sort cat, dog and bird inside Others).
    Someone has a idea of what I can do with this problem ?
    Tks in advance.

    I have this attributes :
    Manifest, Motive1, Motive2
    Values for Manifest: Satisfaction, Reclamation, Idea, ...
    Values for Motive1: Package, Product, Marketing, ...
    Values for Motive2: Mould, Melt, Staning, General, Perfomance, Composition, ...
    Before BIN, i have:
    Manifest: Reclamation
    Motive1: Package Motive2: Perfomance
    Motive1: Package Motive2: Composition
    Motive1: Package Motive2: General
    Motive1: Product Motive2: Mould
    Motive1: Marketing Motive2: General
    Manifest: Satisfaction
    Motive1: Package Motive2: Composition
    Motive1: Package Motive2: Perfomance
    Motive1: Product Motive2: Melt
    After BIN, i have: -- Grouping what I need.
    Manifest: Reclamation
    Motive1: Package Motive2: Perfomance
    Motive1: Package Motive2: Others
    Motive1: Product Motive2: Mould
    Motive1: Marketing Motive2: General
    Manifest: Satisfaction
    Motive1: Package Motive2: General
    Motive1: Product Motive2: Melt
    Now, I have to sort this pivot, but I don't know why. When I try to sort (like perfomance 1 and others 2 marketing 3 product 4 product melt 1 package general 1) I got this:
    Manifest: Reclamation
    Motive1: Package Motive2: Perfomance
    Motive1: Package Motive2: Others
    Motive1: Package Motive2: Others
    Motive1: Marketing Motive2: General
    Motive1: Product Motive2: Mould
    Manifest: Satisfaction
    Motive1: Product Motive2: Melt
    Motive1: Package Motive2: General
    Motive1: Package Motive2: General
    I don't know why, but the BIN didn't sort, they sort ''thinking'' in the things inside the BIN.
    I need to sort this and if possible, without case (to expensive to maintenance..)
    If still unclear, tell pls.
    Tks !

  • Hard disk in mums macbook failed, bought a new one, formatted it first. Have tried starting it with every possible key and I either get flashing question mark folder or a cursor.

    Hard disk in mums macbook failed, bought a new one, used sata adapter cable to format it for mac first. Connected it and have tried starting it with every possible key combination and I either get flashing question mark folder or a cursor. A disk is stuck in it so I can't boot from OSX, and yes I have tried every option of starting to try and eject disk but none work. HELP ME!

    Five ways to eject a stuck CD or DVD from the optical drive
    Ejecting the stuck disc can usually be done in one of the following ways:
      1. Restart the computer and after the chime press and hold down the
          left mouse button until the disc ejects.
      2. Press the Eject button on your keyboard.
      3. Click on the Eject button in the menubar.
      4. Press COMMAND-E.
      5. If none of the above work try this: Open the Terminal application in
          your Utilities folder. At the prompt enter or paste the following:
            /usr/bin/drutil eject
    If this fails then try this:
    Boot the computer into Single-user Mode. At the prompt enter the same command as used above. To restart the computer enter "reboot" at the prompt without quotes.
    If you have a 2010 MBP or later, then you can use Internet Recovery. Start by rebooting the computer. At the chime press and hold down the COMMAND-OPTION-R keys until a Globe appears in the upper part of the screen. This process can take upwards of 15 minutes to get connected to the Apple network servers. You should eventually see the utility screen of the Recovery HD. You may now go about the process to install Mountain Lion:
    Install Lion/Mountain Lion on a New HDD/SDD
    Be sure you backup your files to an external drive or second internal drive because the following procedure will remove everything from the hard drive.
    Boot to the Internet Recovery HD:
    Restart the computer and after the chime press and hold down the COMMAND-OPTION- R keys until a globe appears on the screen. Wait patiently - 15-20 minutes - until the Recovery main menu appears.
    Partition and Format the hard drive:
    1. Select Disk Utility from the main menu and click on the Continue button.
    2. After DU loads select your external hard drive (this is the entry with the mfgr.'s ID and size) from the left side list. Click on the Partition tab in the DU main window.
    3. Under the Volume Scheme heading set the number of partitions from the drop down menu to one. Click on the Options button, set the partition scheme to GUID then click on the OK button. Set the format type to Mac OS Extended (Journaled.) Click on the Partition button and wait until the process has completed. Quit DU and return to the main menu.
    Reinstall Lion/Mountain Lion: Select Reinstall Lion/Mountain Lion and click on the Install button. Be sure to select the correct drive to use if you have more than one.
    Note: You will need an active Internet connection. I suggest using Ethernet if possible because it is three times faster than wireless.

  • A simple question about wrong sorting with multiple sort columns in Excel 2010

    Hi, everyone! I have encountered a problem that I don't know how to explain.
    So I post it here because I don't know if there is another more relevant forum...
    I have a data sheet with the students' scores for the course. 
    All the data were generated with the randbetween function,
    and pasted with the values.
    To rank the students by their performance,
    I did the sort with the column "total score" as the first sort-column
    and "final term" as the second.
    The weird thing to me is that the order of the data seems problematic.
    That is, all the rows are sorted correctly with the first sort-column.
    But for the rows with the same values of the first sort-column,
    there are some rows whose values of the second sort-column are out of order.
    (please look at the data file at
    www_dot_kuaipan_dot_cn/file/id_67204268108546068_dot_htm
    Please change the "_dot_" to the real literal dot.
    Especially the rows with 56.7 as the first sort-column value
    and some other values near the tail of the list.)
    I tried to manually input and sort the same values of both columns
    in a near-by region. The result was correct.
    When some friend copied all the data to paste in Notepad,
    and reload them in excel. The problem disappears.
    Some friend also tried to wrap a round function at the values of the 1st sort-column,
    the sorting order became correct!
    But they could not explain why either.
    How confusing! I even tried to swap the first and secod sort-column;
    the output was right.
    All the data were generated by randbetween function and pasted with values.
    Where could all the special characters, if any, come?
    Can anyone give me an explanation? I would be very grateful.
    Thanks in advance!

    Re:  Sort is not in proper order
    Sounds as if the data includes spaces or hidden characters that are affecting the sort.
    That is indicated by the fact that manually entering the data resolves the problem.
    Note:  You can use a public file storage website to hold your file and add the link to it in your post.
    Jim Cone
    Portland, Oregon USA
    Special Sort excel add-in (30+ ways to sort) - 3 week no obligation trial
    https://jumpshare.com/b/O5FC6LaBQ6U3UPXjOmX2

  • Sorting with nulls last on the fact column

    anybody tell me how to do the sorting with nulls last in the template? i can't change anything in data model or anywhere other than template.
    i did try to put the descending order,but null values are coming in between positive and negative values.
    <?sort:FACT_Column_Name;'decending';data-type='number'?>
    could anyone please tell me how can i do that in template?
    Thanks in advance.
    Edited by: user12255470 on Apr 12, 2012 5:29 PM

    Hi to all,
    i've solved, is very simple using decode inside the select:
    SELECT
    ID,
    FK_HTMLDB_ITEM, DECODE(FK_HTMLDB_ITEM,1,HTMLDB_ITEM.DATE_POPUP(3,rownum,VAL,'dd-mon-yyyy'),2,HTMLDB_ITEM.TEXT(3,VAL)) VALORE
    FROM TESTID
    my table is:
    CREATE TABLE "DEV"."TESTID"
    (     "ID" NUMBER NOT NULL ENABLE,
         "FK_HTMLDB_ITEM" NUMBER,
         "VAL" VARCHAR2(4000 BYTE))
    Bye Bye

  • Fill Array with all possible combinations of 0/1

    Hi,
    i'm looking for a fast way to fill an array, respectively an int[8], with all possible combinations of 0 and 1 (or -1 and 1, shouldn't make a difference).
    I kind of know how to do it using multiple loops but I assume there is a more elegant or at leaster "better" practice.
    Thanks,
    nikolaus
            static int cnt = 0;
         public static void main(String[] args) {
              int[] element = new int[]{1,1,1,1,1,1,1,1};
              Integer[] x = new Integer[2];
              x[0] = 1;
              x[1] = -1;
              for(int i7:x){
                   element[7] = i7;
                   for(int i6:x){
                        element[6] = i6;
                        for(int i5:x){
                             element[5] = i5;
                             for(int i4:x){
                                  element[4] = i4;
                                  for(int i3:x){
                                       element[3] = i3;
                                       for(int i2:x){
                                            element[2] = i2;
                                            for(int i1:x){
                                                 element[1] = i1;
                                                 for(int i0:x){
                                                      element[0] = i0;
                                                      cnt++;
              }Edited by: NikolausO on Oct 30, 2008 4:21 AM
    Edited by: NikolausO on Oct 30, 2008 4:22 AM

    pm_kirkham wrote:
    No I replied to message number 5. as the ' (In reply to #5 )' above my post indicates, which was in reply to (a reply) to Sabre150's post which wasn't using enhanced loops, nor has any obvious place where you could use that approach to fill the array.
    Though you could pass in an array of the values to fill the array with, and loop over those, instead of using 0 or 1, at which point Sabre's approach becomes the same as your OP, but without the manual unrolling:
    import java.util.Arrays;
    public class NaryCombinations {
    public interface CombinationHandler {
    void apply (int[] combination) ;
    public static void main(String[] args) {
    calculateCombinations(new int[]{-1, 0, 1}, 4, new CombinationHandler () {
    public void apply (int[] combination) {
    System.out.println(Arrays.toString(combination));
    public static void calculateCombinations (int[] values, int depth, CombinationHandler handler) {
    recursivelyCalculateCombinations(values, 0, depth, handler, new int[depth]);
    private static void recursivelyCalculateCombinations (int[] values, int index, int depth,
    CombinationHandler handler, int[] combination) {
    if (index == depth) {
    handler.apply(combination);
    } else {
    for (int value : values) {
    combination[index] = value;
    recursivelyCalculateCombinations(values, index + 1, depth, handler, combination);
    Which looks to use the same basic approach to the generalization I created shortly after posting the original.
    public class Scratch1
         * A 'callback' to be invoked with every combination
         * of the result.
        public interface Callback
             * Invoked for each combination.
             * <br>
             * Each call is passed an new instance of the array.
             * @param array the array containing a combination.
            void processArray(int[] array);
        public Scratch1(final int[] array, final Callback callback, final int... values)
            if (callback == null)
                throw new IllegalArgumentException("The 'callback' cannot be 'null'");
            if (array.length < 1)
                throw new IllegalArgumentException("The array length must be >= 1");
            if ((values == null) || (values.length < 1))
                throw new IllegalArgumentException("The 'values' must have be at least of length 2");
            callback_ = callback;
            values_ = values.clone();
            array_ = array;
        public Scratch1(final int order, final Callback callback, final int... values)
            this(new int[order], callback, values);
         * Generates every possible value and invokes the callback for each one.
        public void process()
            process(0);
         * Internal method with no logical external use.
        private void process(int n)
            if (n == array_.length)
                callback_.processArray(array_.clone());
            else
                for (int v : values_)
                    array_[n] = v;
                    process(n + 1);
        private final Callback callback_;
        private final int[] values_;
        private final int[] array_;
        public static void main(String[] args) throws Exception
            final Callback callback = new Callback()
                public void processArray(int[] array)
                    System.out.println(java.util.Arrays.toString(array));
            new Scratch1(6, callback, 2, 1, 0).process();

  • How to access the activities created by an enduser especially when the enduser has left the organization?Please help me out with the possible solution

    How to access the activities created by an end user especially when the end user has left the organization?Please help me out with the possible solution

    Hi Ramesh,
    In the web UI we have business role IC_manger where you can search the activities based on employee responsible and you can use business transaction assignment functionality to assign those activities to any  other end user or team.
    Else you can also use Agent inbox functionality if you have configure the agent inbox for those activity.
    Hope this helps solving your query

  • HT201177 I am having some problems with downloading, possibly settings are incorrect, esp. flashplayer upgrade will not install - i have iMac 8.1 osx v10.5.8 - processor: 3.06 ghz intel core2 duo mem: 2 gb 800 mhz ddr2 sdram

    I am having some problems with downloading, possibly settings are incorrect, esp. flashplayer upgrade will not install - i have iMac 8.1 osx v10.5.8 - processor: 3.06 ghz intel core2 duo mem: 2 gb 800 mhz ddr2 sdram - i am considering making an appt with Apple store nearby since we have a few in vicinity but thought i would give the online support a try.

    The latest version of Adobe FlashPlayer can be obtained from here:
    http://www.adobe.com/shockwave/download/download.cgi?P1_Prod_Version=ShockwaveFl ash
    You can check here what version of Flash player you actually have installed:  http://kb2.adobe.com/cps/155/tn_15507.html
    You can check here:  http://www.adobe.com/products/flash/about/  to see which version you should install for your Mac and OS.
    You should first uninstall any previous version of Flash Player, using the uninstaller from here (make sure you use the correct one!):
    http://kb2.adobe.com/cps/909/cpsid_90906.html
    and also that you follow the instructions closely, such as closing ALL applications first before installing. You must also carry out a permission repair after installing anything from Adobe.

  • LOV sorting with upper and lower case

    In a dynamic table, I have the following values:
    aaxyz
    ABC
    Abd
    ACE
    Adf
    AEG
    But when I create the LOV, it sorts
    ABC
    ACE
    AEG
    Abd
    Adf
    aaxyz
    Is there any way to sort a LOV as if case does doesn't matter?

    Except the values in the dynamic table are sometimes acronyms which should be upper case and sometimes not.
    For example:
    eDiscovery
    False Alarm
    FBI
    Federal Department
    where the list sorts:
    FBI
    False Alarm
    Federal Department
    eDiscovery
    The issue is that the list of values is large (over 100 items) and sometimes the item the user is interested in is sorted below all the initial upper case letter (in the case of the eDiscovery element). It needs to sort with the "E" but not be upper case.
    Thanx!

  • I have install io6 and now Music doesn't work, sometimes it stay with a blank page with no possibility to press anithing, sometimes it crash. I have match music active with more than 15000 title. Someone could help me?

    I have install io6 and now Music doesn't work, sometimes it stay with a blank page with no possibility to press anithing, sometimes it crash. I have match music active with more than 15000 title. Someone could help me?

    What is your current Flash Player version: http://helpx.adobe.com/flash-player/kb/installation-problems-flash-player-windows.html ?
    What is your display adapter, driver version & date?  See http://forums.adobe.com/thread/945765

  • DataFormWebPart: Sorting with Last modified bug

    I have created a DataFormWebPart with SPD2013. In my DataFormWebPart, I sort the table by Modifed column. The column is display with follow format:
    <xsl:value-of select="ddwrt:FormatDate(string(@Modified), 2057, 5)"/>
    However, when sorting with descending order. The time at 12:xx is at higher proirity:
    24/04/2015 12:44
    24/04/2015 12:25
    24/04/2015 17:18
    24/04/2015 16:55
    24/04/2015 15:52
    Why is that? Can we fix it? Thank you.

    Thank you for your reply. I have done more test. When I press F5 to refresh the page, the sorting order is correct. However when click on the column header to sort the order is incorrect.
    There are only two sentense start with <xsl:sort
    <xsl:sort select="*[name() = $dvt_sortfield] | @*[name() = $dvt_sortfield] | text()[name(ancestor::*[1]) = $dvt_sortfield]" order="{$dvt_sortdir}" data-type="{$dvt_sorttype}" />
    <xsl:sort select="ddwrt:FormatDate(string(@Modified),2057,5)" order="descending" />
    and here is part of column with wrong order when clicking the header:
    <xsl:call-template name="dvt.headerfield" ddwrt:atomic="1" xmlns:ddwrt="http://schemas.microsoft.com/WebParts/v2/DataView/runtime">
     <xsl:with-param name="fieldname">@Modified</xsl:with-param>
     <xsl:with-param name="fieldtitle">修改時間</xsl:with-param>
     <xsl:with-param name="displayname">修改時間</xsl:with-param>
     <xsl:with-param name="sortable">1</xsl:with-param>
     <xsl:with-param name="fieldtype">x:dateTime</xsl:with-param>
    </xsl:call-template>
    Here is how the sorting looks like:
    24/04/2015 15:52
    24/04/2015 16:55
    24/04/2015 12:44
    27/04/2015 13:49
    27/04/2015 13:53

  • Sorting with Diacritic characters

    Hi,
    While implementing sorting in Endeca search we came across a scenario where the sorting should include diacritic characters. Taking the example of Polish, there are characters like *"A"* and *"Ą"* starting for the product names. When we sort with the product name (A-Z sort), we had seen that the records starting with *"Ą"* are retrieved at the end. In fact the expected behavior being it should follow after the names starting with *"A"*. Please let me know if anyone has come across similar behavior and the fix made for it.
    The endeca version being used is 6.1.3 and the language used is Polish.

    You need to add --lang pl-u-co-standard to the dgidx and dgraph components (in ./config/script/AppConfig.xml).  By default Endeca sorts using endeca collation which "sorts text with lower case before upper case and does not account for character accents and punctuation."  Standard collation sorts data "according to the International Components for Unicode (ICU) standard for the language you specify".  See http://docs.oracle.com/cd/E35641_01/MDEX.621/pdf/AdvDevGuide.pdf , Chapter "Using Internationalized Data" for further details. 
    If by 6.1.3 you mean MDEX 6.1.3 (as opposed to Platform Services) I'm not sure this sorting was available then, you would need to check the chapter listed above in the MDEX 6.1.3 documentation.

  • My computer is all out of sort with the color and it is in like a negitative effect that i cannot seem to fix. How do i fix it?

    my computer is all out of sort with the color and it is in like a negitative effect that i cannot seem to fix. How do i fix it?

    Try System Preferences>Universal Access>Seeing>Display.  See if White on Black' has been selected.
    If so, select 'Black on White'.
    Ciao.
    Message was edited by: OGELTHORPE

  • Sorting with Name

    hi
    i have procedure with sorting technic..
    for sorting i have used code like this
    ......select ...... .. select ......  rownum rn from table_name
                             where cond...
             where pagenumber ......  pagesize........
    but now i want display result according to sorting,
    with alphabetic sorting.
    means if a user want to search name like start with name "M"
    i want to display result with starting letter is "M" as follows...
    and also user want to move <<next> <<last>> <<first>> <previouse>>for this any doc's or sample example or any ideas
    Edited by: OraclePLSQL on Dec 30, 2010 5:31 PM

    Hi,
    ROWNUM shows the order in which a row was received.
    If the source of the data is a table, then the order is undefined, and ROWNUM is arbitrary.
    If the source of the data is a sub-query or a view, then ROWNUM reflects the ORDER BY clause of that sub-query or view. If there is no ORDER BY clause, then ROWNUM is arbitrarty.
    If you want a Pagination Query , where you each page has a given size (it looks like 3 in your example), and you want to display only one given page (page #2 in your example), then you can use ROWNUM, but assign ROWNUM after the data is ordered.
    So you could modify the query you posted like this:
    SELECT * FROM
       SELECT ENAME,    EMPNO,    SAL
       ,      ROWNUM   AS RN               -- ROWNUM is meaningful here (source is ordered)
       FROM
         SELECT    ENAME, EMPNO, SAL          -- No ROWNUM here (source is not ordered)
         FROM      EMP
    --   WHERE     ename     LIKE 'M%'          -- Any filtering goes here
         ORDER BY  ename
       WHERE ROWNUM <((2*3)+1)
    WHERE RN >= (((2-1)*3)+1)
    ORDER BY  rn
    ;Remember to use an ORDER BY clause in the main query, if you want the output sorted.
    Output (using scott.emp):
    ENAME           EMPNO        SAL         RN
    CLARK            7782       2450          4
    FORD             7902       3000          5
    JAMES            7900        950          6This is the 2nd page; ADAMS, ALLEN and BLAKE would be on page 1.
    I think the analytic ROW_NUMBER function is better than ROWNUM for this kind of thing.
    Also, consider using variables instead of the "magic numbers" 2 and 3 in your WHERE clauses.
    The following query produces the same results as the query above:
    -- How many rows should appear on each page (except maybe the last page)?
    VARIABLE  page_size     NUMBER
    EXEC  :page_size := 3;
    -- Which page do we want to display in this query?
    VARIABLE  page_num     NUMBER
    EXEC  :page_num  := 2;
    WITH     got_rn     AS
         SELECT     ename, empno, sal
         ,     ROW_NUMBER () OVER (ORDER BY ename)     AS rn
         FROM     emp
    --     WHERE     ename     LIKE 'M%'     -- Any filtering goes here
    SELECT       *
    FROM       got_rn
    WHERE       CEIL (rn / :page_size)     = :page_num
    ORDER BY  rn
    ;

Maybe you are looking for

  • Mail attachment charset problem

    Hello, I have made a program which is able to send Icalendar files as an attachment. I get the data as an InputStream. My problem is that the Icalendar file doesn�t show the letters '�', '�' and '�'. I have tried to use iso-8859-1 in the MimeBodyPart

  • Difference in tcode VL10*

    HI, what is the difference in theses tcodes VL10A/B/C/D/E/F/G/H/I

  • BI_CONT_XT

    Dear all, I just wonder do I need to have BO to use the dashboard from BI_CONT_XT 757?  BI_CONT_XT contains business content for dashboards and I am not planning to modify them but just use the standard dashboard.  It seems the prerequisite to instal

  • What happened to "join tracks"??

    After the last ungrade for OSX there is no longer a join tracks when down loading audio books?  It was there, I installed the upgrade and now its gone. It was under "Options" when reading a CD.

  • ACE snmpwalk not return values for CISCO-SLB-MIB

    Hi everyone, I need some help with snmp for the ACE. I am unable to get any results when running an snmpwalk for the object slbVServerClientByteCounts. In fact, I get no results for anything related to CISCO-SLB-MIB. I can run an snmp translate again