SQ02 - Issue on a infoset which doesn't order the results

Hello to everyone,
I'm experiencing some issues when creating a Infoset and implementing the relative query, as the results aren't ordered by the first field which is the Primary Key of the first table of the join which composes the Infoset. Here are the details:
I've created a query on the following JOIN:
DFKKKO >> ERDB >> ERCHC
Plus, i've implemented some code to mess the query so that it returns some additional field with custom values.
One of the target of this query is to have the output sorted by DFKKKO-OPBEL, which is the key of DFKKKO, but it seems that when I ask for a big amount of data, the output isn't sorted at all.
Is there a way to ask the infoset via SQ02 or the query via SQ01 or some coding within the additional fields, etc.. to sort the output by certain fields? In this particular case, I'd like to order for the first output field which is the key of the first table of the join.
Thank you very much in advance.
Best regards,
Claudio

Hello Arbind,
thanks for your quick reply, i'll be start testing it immediately, but I've seen that apparently this method sorts the extraction after it is done. Even though it could appear strange, I should keep a progressive number while elaborating each row of the selection, so for example I'll count in this way:
record 1 - counter 1
record 2 - counter 2
record n - counter n.
Actually, my problem with sort was that record 1 has the key 1, record 2 has the key 2018, record 3 has the key 58, so the counter 2 points to a wrong record.
Your solution is really helpful, but do you know actually if I can put a sort or order by directly in the main selection by indicating something somewhere?
If it isn't possible, i'll start thinking of an alternative solution for the counter problem (which is a counter of the billing rows in a document, instead of a simple counter).
Thanks also to Christian for the answer!
Thank you very much.
Kind regards,
Claudio
Edited by: Claudio CPU on Feb 22, 2011 12:14 PM

Similar Messages

  • How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    How do I keep my installer from trying to update with Photoshop instead of installer? Quark can't update because the installer opens Photoshop which doesn't recognize the file and I'm not given the option to choose anything else.

    1. Sync wasn't intended to be used in that manner. You would be better off carrying around a USB Flash Stick with Portable Firefox for use on "strange" PC's.
    2. You could open the "Library" {Ctrl + Shift + B} and highlight all those bookmarks and then delete them all at once. But that would also delete all the other bookmarks, and it isn't foolproof. All another person would need to do it to '''''restore''''' a bookmark backup file that has your bookmarks. Beyond that, a new Profile could be created and then the current Profile deleted; but that's "messing with" someone else's computer - an action that is worthy of terminating a friendship over, IMO.
    And if that "public" computer was set up properly, Sync should have been disabled.

  • I have an issue with time machine, it doesn't find the Lacie external driver it use to use. it is the same drive that I usaly use for time machine back ups. It is corectly plugged. What can I do ?

    Hi,
    I'm trying to back up my macbook with time machine on the Lacie external driver I usualy use for this, but today my computer doesn't find the driver. I haven't done back up in 6 month.
    Today, the Lacie driver is pluged and running, but the computer just does'nt find it.
    what shall I do ?

    Some things to consider:
    Is the drive mounted, i.e., visible via Finder and/or on the Desktop?
    Is the drive still selected in System Preferences, Time Machine? If not, use the "Select Disk" button.
    Is Time Machine still turned on (System Preferences, Time Machine)?
    Can you see the drive (and mount it) using Disk Utility (in your Utilities folder)?
    charlie

  • Select statement doesn't deliver the result !

    Hello,
    Can please someone help, why this SELECT statement doesn't deliver any result.
        SELECT TDNAME TDID TDSPRAS TDOBJECT FROM STXH
        INTO CORRESPONDING FIELDS OF TABLE I_TEXT
        WHERE TDOBJECT = 'MVKE'
        AND TDNAME = p_matnr
        AND TDID = '0001'.

    MVKE is the text which is sales org specific , right ?
    So i dont think you will have any text with the material name.
    it should be material concatenated with  Sales org and distribution channel atleast.
    go to se11 and see the table contents for STXH where object = MVKE... 
    try concatenate p_matnr p_vkorg p_vtweg into P_matnr.
    and do selection for this.
    Edited by: Sujamol Augustine on May 13, 2008 10:02 PM

  • My "What's New" procedure doesn't show the result Search result page

    Hi,
    I needed a "What's New" report for a content area. The advanced search screen has the option to query with the create date, but you can save the search with something like #sysdate-7. So I created the following procedure:
    create or replace procedure whatsnew
    (p_caid in number default 0
    ,p_folder_id in number default 1
    ,p_days in number default 7
    ) is
    a_attribute_id portal30.wwsbr_type.array;
    a_attribute_name portal30.wwsbr_type.array;
    a_attribute_caid portal30.wwsbr_type.array;
    a_attribute_data_type portal30.wwsbr_type.array;
    a_attribute_operator portal30.wwsbr_type.array;
    a_attribute_value portal30.wwsbr_type.array;
    begin
    a_attribute_id(1) := '10';
    a_attribute_name(1) := 'createdate';
    a_attribute_caid(1) := '0';
    a_attribute_data_type(1) := 'date';
    a_attribute_operator(1) := portal30.wwsbr_search_api.greater_than;
    a_attribute_value(1) := to_char(sysdate-p_days);
    portal30.wwsbr_search_api.submit_search
    (p_search_terms => null
    ,p_caid => p_caid
    ,p_current_caid => p_caid
    ,p_folder_id => p_folder_id
    ,p_folder_caid => p_caid
    ,p_include_child_folders => portal30.wwsbr_search_api.yes
    ,p_attribute_id => a_attribute_id
    ,p_attribute_name => a_attribute_name
    ,p_attribute_caid => a_attribute_caid
    ,p_attribute_data_type => a_attribute_data_type
    ,p_attribute_operator => a_attribute_operator
    ,p_attribute_value => a_attribute_value
    end;
    Now you can call this from a dynamic page component (have it displayed as portlet), or include it as an URL item in the content area (/pls/portal30/portal30.whatsnew?p_caid=33&p_folder_id=1&p_days=7).
    This work fine and show the search result. Now I've customized the Search Result Page, but it seems that wwsbr_search_api is navigating to a standard (fixed layout) search result screen (square item/folder links in stead of tabs) and not to my customized Search Result Page. If I click the submit button in the result screen then it navigates to my customized Search Result Page.
    So why doesn't wwsbr_search_api navigate to the customized Search Result Page, or am I doing something wrong ?
    Regards,
    Willem-Pieter van der Lugt
    Oracle Consulting NL

    Hi,
    I just saw topic http://technet.oracle.com:89/ubb/Forum82/HTML/000617.html with the answer pointing to bug 1869531.
    regards,
    Willem-Pieter van der Lugt

  • I have an Apple OSX 10.5.8 with 2Ghz powerPC G5, which doesn't accept the standarsversion of firefox 6, but someone made an adaptation, where do I find it?

    I just need the name of the website, I know it exists, but I forgot the name.

    You may be looking for TenFourFox.com ... which at the moment is offline due to some sort of outage.
    I believe I have seen other projects, but that is one I tried a few releases ago. Sadly keeping the old (but still very functional) PPC machines running feels like walking down a swinging-rope bridge as someone is cutting the ropes one at a time.... I recently told a user we must budget to replace her Mac, even though it works fine for her, because its OS won't work at all with her new iPad. (Crafty devils, those Apple engineers!)

  • This program doesn't display the results :-(

    this program should output the sum,difference,product and quotient of two numbers.
    i guess the computeQuotient is the wrong part..
    import java.util.*;
    public class MethodExample2
         static Scanner get = new Scanner(System.in);
         public static void main(String[] args)
              double sum,difference,product,quotient;
              double n1,n2;
              System.out.print("Enter the first number: ");
              n1 = get.nextInt();
              System.out.print("Enter the second number: ");
              n2 = get.nextInt();
              sum = computeSum(n1,n2);
              difference = computeDifference(n1,n2);
              product = computeProduct(n1,n2);
              quotient = computeQuotient(n1,n2);
              System.out.print("Sum: " + sum);
              System.out.print("\nDifference: " + difference);
              System.out.print("\nProduct: " + product);
              System.out.print("\nQuotient: " + quotient);
              System.out.println();
         public static double computeSum(double num1,double num2)
              return num1 + num2;
         public static double computeDifference(double num1,double num2)
              return num1 - num2;
         public static double computeProduct(double num1,double num2)
              double res = 0.0;
              for(double ctr = num1;ctr > 0; ctr--)
                        res = num2 + res;
              return res;
         public static double computeQuotient(double num1,double num2)//i guess this is the wrong part
              double res, ctr;
              for(ctr = 1; ctr >= 0; ctr++)
                   res = num1 - num2;
                   num1 = res;
              return ctr;
    }

    Dear Sir:
    The ArithmeticException is RuntimeException, therefore it is unchecked exception.....
    Here is my dumb program for your reference....
    import java.util.*;
    public class ScannerExp{
         static Scanner get = new Scanner(System.in);
         public static void main(String[] args){
         double sum,difference,product,quotient;
         double n1,n2;
         System.out.print("Enter the first number in double format: ");
         n1 = get.nextDouble();
         System.out.print("Enter the second number in double format: ");
         n2 = get.nextDouble();
         sum = computeSum(n1,n2);
    difference = computeDifference(n1,n2);
         product = computeProduct(n1,n2);
         quotient = computeQuotient(n1,n2);
         System.out.print("Sum: " + sum);
         System.out.print("\nDifference: " + difference);
         System.out.print("\nProduct: " + product);
         System.out.print("\nQuotient: " + quotient);
         System.out.println();
         public static double computeSum(double num1,double num2)
              return (num1 + num2);
         public static double computeDifference(double num1,double num2)
              return (num1 - num2);
         public static double computeProduct(double num1,double num2){
              return (num1*num2);
         public static double computeQuotient(double num1,double num2){
    return (num1 / num2);
    use
    jacvac ScannerExp.java
    java ScannerExpthen input the number you want to compute....
    Hope it is half right....

  • I just updated to version 10 and wish to downgrade to version 9. None of my security software is compatible with 10. Where can I download version 9. Version 3.6, which is available on the website, is farther back than I want to go. Thank you.

    see question

    _nat_
    You're better off with almost anything accept ZA and Kaspersky, they both are absolutely the worst security vendors at keeping up with Firefox updates this past year - each has had at least one Firefox add-on being many weeks or months behind Firefox's release schedule. It's almost like they don't know about the Firefox 18 week development process and they wait until their Firefox users complain about their crap not working with a newly released version of Firefox before they even think about doing their updates. IMO, the smart thing to do is to test the Nightly channel version (first 6 week alpha stage) for compatibility issues once a week to see what problems might exist with their software, and once the new version hits the Aurora channel (2nd 6 week alpha stage) start formulating a plan, schedule for what they need to be fixed and start fixing their stuff, while stepping up testing a bit. Once the new version hits the 6 week Beta channel they should be completing their fixes and expanding their testing to include combination's of the most popular add-ons being used by Firefox users so they can see any problems their users might run into and fix what needs to be fixed before the release of the new Firefox version.
    One other thing that these security vendors could do is to have some of their customers do their Beta testing to find the faults and weak spots in their stuff, much like open source organizations like Mozilla does with Firefox. While I'm not a computer software professional, I have 3 different Nightly versions installed that I "test" a bit almost everyday for the simpler stuff, and the Aurora version, along with the Beta version. Over that last 6 or 7 years I have found 3 or4 pretty severe faults that I filed Bug reports about, one of which resulted in the developers providing a much sterner warning message about the risk of data loss and the other Bug reports helped the developers by making them aware of a potential problem early enough in the development that is wasn't hard to avoid the issue I pointed out to them with some minor coding changes.
    Free or paid version, if these security companies are going to create and distribute a Firefox add-on the right thing to do is to keep it up to date with Firefox, or they should just discontinue the add-on and quit jerking us around with their irresponsibility and lackadaisical attitude toward Firefox. I honestly miss the "good old days" when these security companies ignored Firefox and only supported Internet Explorer.
    I use Avira Personal Free - http://www.free-av.com/ - which doesn't feel the need to build add-ons for Firefox that really don't add anything to Firefox and only provide a "bells & whistles"version of something that is already built into Firefox. Good solid anti-virus protection that is updated twice daily.

  • Breadcrumb doesn't retain the previous page values

    I have the following hierarchy in my pages. home > search > summary > details.
    The user goes to the search page gives a criteria and the summary page shows all the required matching results. Now the summary results is a table of name, id, date etc. The id field is a hyper link which when clicked takes to the details page.
    My problem is that when I am on the details page and I click on the "summary" breadcrumb it works fine and navigates to the summary page but doesn't show the results that it previously showed. So the breadcrumb forgets the values.
    Also I have another problem: Say a user enters a search criteria and there are no results found and the user is now in the summary page. Then if the user clicks on the search breadcrumb the search page opens. It works fine till here. But this is what is required. In the text fields the value with which the search was performed should be present.
    Can anyone help please ?
    Thanks in advance.

    Any one with any ideas as to how to go about implementing this ?
    Bread Crumbs is working fine but it doesn't retain the values !!!!!!!
    Thanks in advance.

  • I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    I'm trying to open files which are telling me to instal Adobe Reader.  Which I did but the agreement which needs to be ticked off so this reader can open doesn't come up.  Please could you be of some assistance.

    Select one of the files, Choose GetInfo from the Finder's File menu, look for the field named "Open With", and choose Preview from the adjacent menu. Accept that ALL such files will Open with Preview, and your major problems should be solved.
    Occasionally, a particularly complex .pdf file or one that needs to be modified and re-written will not work quite right with Preview, but such issues are rare.

  • I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile b

    I have been having a issue with getting the colors on my monitor to match the colors fro my print lab. I now have the monitor calibrated to match the prints but when I open elements it doesn't use the same colors. If i have it use the calibrated profile by changing the color management settings, the color picker no longer shows true white or black. How do I get elements 12 to honor the new calibrated settings?

    Ok so I've done what you said and this is what it's come back ....
    I don't know that these are the errors , but they're the things which don't look right ...
    Throughout the shut down there is a recurring line ;
    It says ;
    Com.apple.launchd 1 0x100600e70.anonymous.unmount 301 PID still valid
    Then there are 2 more which I think are related ;
    Com.apple.securityd 29 PID job has I overstayed its welcome , forcing removal.
    Then the same with fseventd 48 and diskarbitrationd 13
    Oh and on Launchd1 : System : stray anonymous job at shut down : PID 301 PPID13 PGID 13 unmount...
    Then the last process says "about to call: reboot (RB_AUTOBOOT).
    Continuing...
    And stops ...
    Hope this means something to you ... Thanks again for your help so far :-)

  • TextInput (with lookup reference) which doesn't display database value

    Hi,
    We are using JHeadstart 11.1.1.0.31 and have a problem with a field (varchar2 displayed as textInput) which references a lookup table. The value which is displayed is not the database value we expected but a number which seems to be the number of the record in the table. When we display the referenced field from the lookup table, we see the correct database value.
    When we run the service in the Model layer, this problem doesn't exist.
    Thanks for helping us,
    Petra Wernars / Jonathan Damen

    Hi,
    The issue here is that:
    - a model LOV has been defined on the View Object attribute
    - you are using a normal texinput to display the value
    - you are using something like #{bindings.MyField.inputValue} to bind the value
    The 'inputValue' will in this case assume a choicelist is rendered (because of the model LOV definition) so it will give the index within the choicelist, instead of the normal VO attribute value!
    Use 'attributeValue' instead in this case, so you will always show the real attribute value. Or remove the model LOV if you are not using it. Notice that with default options selected, JHeadstart will create a model LOV on each column that references another viewobject.
    Regards
    Evert-Jan de Bruin
    JHeadstart Team

  • Issue on payroll area which is changing from biweekly to monthly in Mid of

    Dear Experts,
    I have an issue on payroll area which is changing from biweekly to monthly in Mid of the Month.
    One employee was retired on 29th of March, so his payroll area was changed from biweekly to monthly on 29th. For retire we are running the payroll on 8th of every month. When we are running payroll for April he has received only 29th and 30th retire salary, by the time he is not yet retired also.
    In this case the main problem is monthly payroll time is early then biweekly. so the employee is getting retire salary then his regular pay.
    Can you guide me where we can control that monthly payroll area should not be triggered at this movement.
    Thanks
    Chandra

    You can do that but it is not that easy as it sounds if you have to do that over a period of say 10-20 years...lot of operational work!!
    Also say if you load the retiree action one month ahead say on 03/01/2011. And the employee is retiring on  03/29.
    Retire payroll is on 04/08
    Biweekly is on 04/15
    Now you decide to lock the employees after the 1st biweekly check of March...say which was process 14 days before 04/15 would be 04/01. The employee number is locked between 04/01 to 04/15. For 14 days you have locked these employees!!
    What happens if there is adjustment pay...you have to manually go and unlock the employee and lock him after the adjustment check.
    I will let you decide based on the comfort, SAP effort, Operational effort and system maintenance.

  • How to handle RunTime Faults which doesn't list under System Faults?

    Hi,
    I have a doubt regarding runtime faults in BPEL 1.1.In BPEL 1.1 some of the run time faults are categorised as system faults.So we can handle those run time faults
    using the faultname or namespace(http://schemas.oracle.com/bpel/extension) of system fault itself.But 'SublanguageExecutionFault' is a run time fault which doesn't list under system faults.
    So what namespace it belongs to?Can we use the same namespace of system fault for this kind of runtime faults ?
    Are any other runtime faults existing which don't have the same namespace of sytem faults?So how can we identify and handle those run time faults?

    You can create a role menu as remote enabled remote menu.
    The authority checks will happen on the remote side, also against objects which don't exist in the calling system as the music is on the other side.
    On the RFC client system side, you only need the parameter transaction to start the remote transaction in the remote system.
    See the documentation on SYST function module ABAP4_CALL_TRANSACTION.
    This is however a rather antiquated technology... it is more popular to use a SAP Portal or webdynpro applications for this sort of thing (the user does not notice the difference) or later versions of such integration such as Fiori UIs or imbedded links within the Business Client.
    I don't want to lean out the window too far, but the buggy phase of these new things is approaching an end and they are usable if you are on newer releases. Then you can pool the menu and use APIs for navigation and no more irritating S_TCODE checks.
    Cheers,
    Julius

  • How to install W.7 on 2011 Macbook pro which doesn't come with bootcamp dvd?

    how to install W.7 on 2011 Macbook pro which doesn't come with bootcamp dvd?

    Use the Boot Camp Assistant in the /Applications/Utilities/ folder to put the Boot Camp drivers onto an optical disk or USB thumbdrive.
    (80603)

Maybe you are looking for