Sort by edidc_docnum when using RBDAPP01

We have been processing custom CRP inbound idocs immediately since go-live.  Due to slow processing, we want to use RBDAPP01 and a variant to process them in batch mode.  When testing, I noticed that they are not sorted by idoc number, and my requirement is to have them process in the order they come in from the external system.  I have read a little about Serialization and cannot tell if there is an option for me to sort by idoc number here.  I want to avoid making a ZRBDAPP01 if there is config to use.  Can anyone tell me if/how serializatino may allow me to batch process in idoc number order?  Thanks

I don't think it is possible. Here are the sort statements in this program.
<u>Without Serialization</u>
sort t_idoc_control_r
  by sndprn sndprt sndpfc mestyp
     mescod mesfct test serial.
<u>With Serialization</u>
sort t_idoc_control_s
  by sndprt sndprn obj_type chnum chcou.
In neither of them, the document number is used. There is no guarantee that they will be processed in the document number order, even if serialization is used.
Regards,
Srinivas

Similar Messages

  • Does anyone find that the new iPad Air sounds sort of "hollow" when using the pad?

    Maybe I don't know what I am talking about, but I feel like when using the iPad Air, it seems a bit hollow when using the screen pad or basically just using it in general. My last iPad (the latest one before the Air) seemed like it was more quality. Does that make sense?

    Yes it does have a slightly hollow sound when you tap the screen. This is because the screen is made a bit differently than the older ones...there's a gap between the layers in the screen, which causes the sound you're hearing...it's completely normal on the Air. I took my Air back tho! It's awesome but just a bit big for my taste. I'm hoping the Mini comes soon!
    And I don't know why Kappy is saying the speakers can't do the low frequency so well. The speakers on the Air produce a way better sound than earlier gens..including low frequencies.
    cheers

  • How to sort specific column when using GROUPING SETS in SQL Server?

    If I remember correctly, in SQL Server, it is not recommended to use "ORDER BY" when there's already a GROUP BY GROUPING SETS.
    I have two columns: [UPC#] & [Description] both are varchar.
    My grouping sets is like this:
    GROUP BY
    GROUPING SETS
    ([UPC],[Description])
    I don't have 'ORDER BY' but it's automatically sorting the Description column.
    If I added a 3rd column, sum(Qty), then it doesn't sort by Description anymore. But if I added
    ORDER BY [Description]
    then the grand total of sum(Qty) will be at the first row instead of the last.
    Is there a way to sort the Description column and still let the grand total of sum(Qty) be at the last row instead?
    Thanks.

    Yes, it works.
    Thank you.
    Could you kindly explain the logic?
    I don't quite understand the "= 3 THEN 1 ELSE 0" part.
    Is the #3 mean the column index 3?
    GROUPING_ID returns a bit mask value depending on number of columns grouped in the result 
    So when you do GROUPING_ID(([UPC]),([Description]))
    it has two columns UPC and Description so bit mask will be as follows
    0 ie 00 for rows grouped by both UPC and Description fields
    1 ie 01 for rows grouped by UPC ie UPC subtotals
    2 ie 10 for rows grouped by Description ie Description subtotals
    3 ie 11 for rows not grouped by both columns ie Grand total
    see
    http://msdn.microsoft.com/en-IN/library/bb510624.aspx
    Please Mark This As Answer if it helps to solve the issue Visakh ---------------------------- http://visakhm.blogspot.com/ https://www.facebook.com/VmBlogs

  • I have some sort of redirect when using Firefox and google. I can't seem to find it so I have resorted to using Chrome

    It takes me to malicious sites when I click on the first choice on a google search no matter where it is in the ranking. It is really annoying. I have anti Malware and avast. Neither seems to find it. I am not computer saavy enough to get into the root logs etc. and I don't want to pay a bunch of money just to use my beloved Firefox. Can I delete firefox then re download it?

    Do a malware check with some malware scanning programs on the Windows computer.<br />
    You need to scan with all programs because each program detects different malware.<br />
    Make sure that you update each program to get the latest version of their databases before doing a scan.<br /><br />
    *http://www.malwarebytes.org/mbam.php - Malwarebytes' Anti-Malware
    *http://www.superantispyware.com/ - SuperAntispyware
    *http://www.microsoft.com/security/scanner/en-us/default.aspx - Microsoft Safety Scanner
    *http://www.microsoft.com/windows/products/winfamily/defender/default.mspx - Windows Defender: Home Page
    *http://www.safer-networking.org/en/index.html - Spybot Search & Destroy
    You can also do a check for a rootkit infection with TDSSKiller.
    *http://support.kaspersky.com/viruses/solutions?qid=208280684
    See also:
    *"Spyware on Windows": http://kb.mozillazine.org/Popups_not_blocked

  • [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)

    Dear Experts,
    i am getting the below error when i was giving * (Star) to view all the items in DB
    [Microsoft][SQL Server Native Client 11.0][SQL Server]The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator.  'Items' (OITM) (OITM)
    As i was searching individually it is working fine
    can any one help me how to find this..
    Regards,
    Meghanath.S

    Dear Nithi Anandham,
    i am not having any query while finding all the items in item master data i am giving find mode and in item code i was trying to type *(Star) and enter while typing enter the above issue i was facing..
    Regards,
    Meghanath

  • Error in SQL Query The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query

    hi Experts,
    while running SQL Query i am getting an error as
    The text, ntext, and image data types cannot be compared or sorted, except when using IS NULL or LIKE operator. for the query
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    T2.LineText
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry INNER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,T2.LineText
    how to resolve the issue

    Dear Meghanath,
    Please use the following query, Hope your purpose will serve.
    select  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price ,
    CAST(T2.LineText as nvarchar (MAX))[LineText]
    from OQUT T0  INNER JOIN QUT1 T1 ON T0.DocEntry = T1.DocEntry LEFT OUTER JOIN
    QUT10 T2 ON T1.DocEntry = T2.DocEntry --where T1.DocEntry='590'
    group by  T1. Dscription,T1.docEntry,T1.Quantity,T1.Price
    ,CAST(T2.LineText as nvarchar (MAX))
    Regards,
    Amit

  • Problem when using sorting

    Hi,
    This is my XML data
    <?xml version="1.0" encoding="windows-1252"?>
    <!-- Generated by Oracle Reports version 6.0.8.27.0 -->
    <INVARPTP>
    <LIST_G_SUBINVENTORY>
    <G_SUBINVENTORY>
    <ORGANIZATION_CODE>60</ORGANIZATION_CODE>
    <ORGANIZATION_NAME>Perth</ORGANIZATION_NAME>
    <PHYSICAL_INVENTORY>Org 60 Sept stocktake 4/9</PHYSICAL_INVENTORY>
    <SUBINVENTORY>A STORE</SUBINVENTORY>
    <LIST_G_HEADER>
    <G_HEADER>
    <ADJUSTMENT_ID/>
    <COST_GROUP_ID/>
    <PARENT_LPN/>
    <OUTERMOST_LPN/>
    <TAG>20300</TAG>
    <ITEM_ID/>
    <C_ITEM_FLEXDATA/>
    <DESCRIPTION/>
    <REVISION/>
    <PRIMARY_UOM/>
    <LOT_NUMBER/>
    <LOCATOR_ID/>
    <SERIAL_NUMBER/>
    <C_LOC_FLEXDATA/>
    <C_ITEM_VALUE/>
    <C_LOC_VALUE/>
    <CF_PARENT_LPN/>
    <CF_OUTERMOST_LPN/>
    <CF_COST_GROUP/>
    </G_HEADER>
    <G_HEADER>
    <G_HEADER>
    <ADJUSTMENT_ID>60728</ADJUSTMENT_ID>
    <COST_GROUP_ID>2042</COST_GROUP_ID>
    <PARENT_LPN/>
    <OUTERMOST_LPN/>
    <TAG>2662</TAG>
    <ITEM_ID>40116</ITEM_ID>
    <C_ITEM_FLEXDATA>29548988
    ATD</C_ITEM_FLEXDATA>
    <DESCRIPTION>KIT, FILTER 4" SUMP</DESCRIPTION>
    <REVISION/>
    <PRIMARY_UOM>EA</PRIMARY_UOM>
    <LOT_NUMBER/>
    <LOCATOR_ID>50376</LOCATOR_ID>
    <SERIAL_NUMBER/>
    <C_LOC_FLEXDATA>00
    A
    01
    B
    </C_LOC_FLEXDATA>
    <C_ITEM_VALUE>29548988.ATD</C_ITEM_VALUE>
    <C_LOC_VALUE>00.A.01.B..</C_LOC_VALUE>
    <CF_PARENT_LPN/>
    <CF_OUTERMOST_LPN/>
    <CF_COST_GROUP/>
    </G_HEADER>
    <ADJUSTMENT_ID>60761</ADJUSTMENT_ID>
    <COST_GROUP_ID>2042</COST_GROUP_ID>
    <PARENT_LPN/>
    <OUTERMOST_LPN/>
    <TAG>0133</TAG>
    <ITEM_ID>21914</ITEM_ID>
    <C_ITEM_FLEXDATA>000N05648/1
         MTU</C_ITEM_FLEXDATA>
    <DESCRIPTION>SEALING RING</DESCRIPTION>
    <REVISION/>
    <PRIMARY_UOM>EA</PRIMARY_UOM>
    <LOT_NUMBER/>
    <LOCATOR_ID>30093</LOCATOR_ID>
    <SERIAL_NUMBER/>
    <C_LOC_FLEXDATA>ABB
         001
         </C_LOC_FLEXDATA>
    <C_ITEM_VALUE>000N05648/1.MTU</C_ITEM_VALUE>
    <C_LOC_VALUE>ABB.001....</C_LOC_VALUE>
    <CF_PARENT_LPN/>
    <CF_OUTERMOST_LPN/>
    <CF_COST_GROUP/>
    </G_HEADER>
    <G_HEADER>
         <ADJUSTMENT_ID>60761</ADJUSTMENT_ID>
         <COST_GROUP_ID>2042</COST_GROUP_ID>
         <PARENT_LPN/>
         <OUTERMOST_LPN/>
         <TAG>0133</TAG>
         <ITEM_ID>21914</ITEM_ID>
         <C_ITEM_FLEXDATA>000N05648/1
         MTU</C_ITEM_FLEXDATA>
         <DESCRIPTION>SEALING RING</DESCRIPTION>
         <REVISION/>
         <PRIMARY_UOM>EA</PRIMARY_UOM>
         <LOT_NUMBER/>
         <LOCATOR_ID>30093</LOCATOR_ID>
         <SERIAL_NUMBER/>
         <C_LOC_FLEXDATA>ABB
         001
         </C_LOC_FLEXDATA>
         <C_ITEM_VALUE>000N05648/1.MTU</C_ITEM_VALUE>
         <C_LOC_VALUE>ABB.001....</C_LOC_VALUE>
         <CF_PARENT_LPN/>
         <CF_OUTERMOST_LPN/>
         <CF_COST_GROUP/>
    </G_HEADER>
    </LIST_G_HEADER>
    </G_SUBINVENTORY>
    </LIST_G_SUBINVENTORY>
    <C_COUNT>4616</C_COUNT>
    </INVARPTP>
    I am using the following code for my sorting
    <?for-each:G_HEADER?><?sort:C_LOC_VALUE;'ascending';data-type='text'?><?sort:C_ITEM_VALUE;'ascending';data-type='text'?><?sort:SERIAL_NUMBER;'ascending';data-type='text'?>
    when using the above code the data for C_LOC_VALUE with alphabets from A to Z are coming first and then the C_LOC_VALUE starting with 00 is being displayed at the end, but my requirement is to display data with 00 at the starting and then remaing alphabets in ascending order.
    Please guide how to get this.
    Best Regards,
    Mahi

    <?for-each:G_HEADER?><?sort:C_LOC_VALUE;'ascending';data-type='text'?>
    <?C_LOC_VALUE?>
    <?end for-each?>Using the above code
    Will get you the result as below
    ABB.001....
    00.A.01.B..
    00.A.01.B..Next one.
    <?for-each:G_HEADER?><?sort:C_LOC_VALUE;'ascending';data-type='number'?>
    <?C_LOC_VALUE?>
    <?end for-each?>will result in
    00.A.01.B..
    00.A.01.B..
    ABB.001....use th following
    <?for-each:G_HEADER?>
    <?sort: translate(C_LOC_VALUE,'0123456789','abcdefghij');'ascending';data-type=’text’?>
    <?C_LOC_VALUE?>
    <?end for-each?>you will see th correct result.
    00.A.01.B..
    00.A.01.B..
    ABB.001....
    DDD.001....

  • The sort field is not used when ordering multiple cds in one alumn folder, how do I correct this?

    It is using the track number and not the sort order field.  The reason I have multiple cds in one alumn is because they are books on cd.

    Sorry for the typo my "b" key was not working correctly.
    The sort field is not used when ordering multiple cds in one albumn folder, how do I correct this?  It is using the track number and not the sort order field.  The reason I have multiple cds in one albumn is because they are books on cd.

  • Line details sort order when using Pick and Pack

    Hi,
    A customer of mine recently complained (very small complain) that when he used "Per date" as a sort when using Pick & Pack, that the line details where not grouped together by Sales Order Number.
    Example:
    2008/11/23   SO1001 - Line 1
    2008/11/23   SO1013 - Line 3
    2008/11/23   SO1001 - Line 2
    2008/11/23   SO1001 - Line 4
    2008/11/23   SO1021 - Line 1
    2008/11/23   SO1001 - Line 5
    etc...
    Is there a way to sort records on two columns instead of just one? or would there be another workaround this issue?
    Thanks
    Charles

    I think I found my answer, sorting data using the Data/Sort feature allows for sorting on multiple columns.

  • Sort order when using "Album by Artist/Year" album list view

    In iTunes 10, I seem to have lost the sorting I've been using for the past 5 years at least. I use the "Album List" view, and have the album artwork showing to the left of the songs. I see the new "Album by Artist/Year" sort option in the album artwork column, and that is how I would like it to sort. However, now the album are arranged by artist, and within the artist by the year they were released as tagged in the info for each song. I want the newest albums at the top, and I cannot figure out how to make it sort that way. What do I need to do? Basically I want it in descending order by release date, but still sorted by album.

    dannycorker wrote:
    It appears they are, although I refuse to believe this is the accepted behaviour - has no one else complained about this?
    It could simply be a weakness is the way this was all designed. If you look at the information Gracenote uses, it's not unusual for all tracks on a 60's compilation album to be incorrectly listed as the same year, often the year the compilation was released. The same thing tends to happen with re-issued albums. That's down to whoever inputs the information into Gracenote for that album, often a bored record company employee.
    First of all, you could try changing the year for each documentary to the year the album was produced and see if that fixes the problem. If it does, then you have to decide how to handle it.
    Accept it as it is.
    Change the year for the documentary to the same year as the album and simply kid yourself that it's the correct year. (I'm not being flippant, but if the documentary is all footage from album release year, then "technically", the doumentary is from that 60's year.)
    Leave the year of the documentary track blank, but put the year (2010) into the track's "Comments" field instead.
    Propose a workable solution to Apple via Apple Feedback. (I am being a bit flippant now. Sorry, but you'll be in for a long wait before anything might change.)
    Get Gracenote to change their text fields, get the people who input the information into Gracenote to do so correctly and then get Apple to change iTunes to recognise those changes. (Now I am being very flippant. Good luck with this one!) Oh! And hope Apple never decide to change from Gracenote to someone else!
    Number 2 or 3 are probably your best bet.

  • How can I show only text edits and not text formatting when using print comments summary?

    Acrobat 9.3.0 for Mac.
    Here is the scenario: I used the Compare command to see the changes between 2 PDFs. The resulting file some edits are inserts and some are deletions. I want to print a comments summary only showing the text edits. In the Compare Option pane, I select Text and deselect Images, Annotations, Formatting, Headers/Footers, and Backgrounds. Now on the screen I see inserts are highlighted in blue and deletions are marked with sort of a caret and vertical bar symbol. So all looks good at this point. However, when I show the Comments List, I see addtional comments that indicate "Replace - The following text attributes were changed: fill color." Those comments do not appear in the page view unless I check the Formatting check box to show them. With Formatting unchecked, I print a comments summary and all of the "Replace - Fill Color" comments" appear on the resulting comments summary.
    I only want to show text edits, not text formatting changes. So questions are:
    1. Why, when the Formatting checkbox is unchecked, do the text formatting comments still appear in the comments list when they do not appear on the page display.
    2. How can I print only the text content edits and not show the text formatting changes when using Print Comments Summary.

    Hi,
    You can set ExecuteWithParams as default activity in the task flow then method activity to return total no of rows passing to Router activity if your method has value 0 then call Create insert operation else do directly to page.
    Following idea could be your task flow
    Execute With param (default) > SetCurrentRowWithKey > GetTotalNoOfRows (VOImpl Method)
    |
    v
    Router
    1. If pageFlowScope outcome is 0 then call CreateInsert > MyPage
    2. if pageFlowScope outcome > 0 then MyPage
    hope it helps,
    Zeeshan

  • Ldapssl_client_init always returns -1 when using nsldapssl32v50.dll

    We have an iPlanet Directory Server v5.2 installed and SSL has been configured on it.
    When we call ldapssl_client_init(CERTDBPath, NULL) we always get a the return value as -1.
    We used nsldapssl32v30.dll and the corresponding lib and tried the same program and it worked perfectly fine.
    Now the question is why does this call fail when using the 5.0 version of the library.
    We have tried calls to ldapssl_client_init in the different ways like
    --> ldapssl_client_init("D:/Program Files/Sun/MPS/alias", NULL)
    with the cert7.db in this path. This failed
    --> ldapssl_client_init("D:/Program Files/Sun/MPS/alias/slapd-mydb-cert7.db", NULL)
    This also failed
    We need to use the v5 of the library bcoz the older versions are not compliant with LDAP v3 for referral support.
    Our current environment is Win2k Server SP4 and iPlanet Dir Server 5.2.
    Please help us sort out this issue.
    Thanks
    Raghu

    The function "ldapssl_client_init" returns -1, if I use LDAP SDK 6.0 binaries (source downloaded from http://wiki.mozilla.org/LDAP_C_SDK and compiled). It returns same error code i.e. -1, if we use precompiled binaries.
    But if I use the old LDAP 5.2 binaries, it works fine.
    Here is a sample code that I used to test ldapssl_client_init() on RHAS3.0:
    #include <ldap.h>
    #include <ldap_ssl.h>
    #include <stdio.h>
    /* Initialize client, using mozilla's certificate database */
    int main(void) {
    /* "/home/infwaer/test/" is the folder that contains cert7.db and key3.db*/
    if(ldapssl_client_init( "/home/infwaer/test/", NULL ) < 0) {
    printf( "Failed to initialize SSL client...\n" );
    return( 1 );
    else
    printf( "Initialized SSL client...\n" );
    I used the following command to compile it with 5.2 binaries, and was able to successfully call the function ldapssl_client_init:
    gcc ldapclient.c -I/home/infwaer/nsldap/5.2/RHAS3.0/include
    -L/home/infwaer/saurabh_review/lib -lldap50 -lnspr4 -lplds4 -lplc4 -lsoftokn3 -lnss3 -lssl3 -lprldap50 -lssldap50 -ldigestmd5 -lsasl
    But when I compiled it using 6.0 binaries using the same command:
    gcc ldapclient.c -I/home/infwaer/nsldap/6.0/RHAS3.0/include
    -L/home/infwaer/saurabh_review/lib -lldap60 -lnspr4 -lplds4 -lplc4 -lsoftokn3 -lnss3 -lssl3 -lprldap60 -lssldap60 -ldigestmd5 -lsasl
    It gave the error "failed to initialize" (as written in the code !)
    Please help me out; n let me know if it is a known issue with LDAP SDK 6.0. Or we need to do some special settings for version 6.0 to work properly.
    Thanks & Regards,
    Saurabh

  • MBA drops wifi when using an external monitor

    My MBA 1.6 GHz has an issue when using only an external monitor. That is when re-awoken after a sleep, with the portable's monitor closed and using both an Apple external keyboard and mouse, my wifi connection to my time capsule drops. It does this consistently and I suspect a hardware issue as the same thing happened under leopard.
    Is anyone experiencing this issue? Does anyone know of a test I could preform to establish what is failing? Does this require a hardware repair? Any help with this would be appreciated!

    I am having an identical problem with my Mac Air.
    It seems we aren't alone either: http://discussions.apple.com/thread.jspa?threadID=1401466&tstart=60. Seems to be some sort of interference issue.

  • I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a

    I have been noticing that when using the computer the mouse keeps going in places where I really do not want and just now select the sentence without I have done anything. Sometimes goes to places like bookmark or open tabs in website when I am reading a page.
    Also I have noticed opened windows that I have not opened.
    I have verified the sharing folder and also the remote access but it not let me turn it off.
    Also I have add a password to my computer and even using the same one it looks like is not working.
    The I photo stopped working, Mac Mail does not let me add rules (this is from one day to the other)
    The computer is mine, the internet I use is payed by me with a password. I did not give permission to anyone to use my computer or share my files.
    In system preferences in the sharing folder is showing everyone and staff.
    My computer is private I do not own a company and I do not have a network set up in my house.
    I had my photos removed from my computer and even after trying to reinstall I photo and fix the Mac Mail is not working.
    I am receiving emails saying that I have sent emails to people that I do not know and including in a time where I am working and not using the computer.
    Any suggestions in how to fix this issue?
    I really appreciate.

    With the multitude of issues you have I would take it to an Apple store or AASP and have them sort it out. Then I would sign up for Apple camp or one on one.

  • When using facebook, Firefox locks up and nothing works except a hot shutdown on Windows Vista

    About twice a week, usually, but not always, when using facebook, my screen locks up, no buttons or clicks on links work and I get a message in the Firefox title bar that says: "Firefox not responding". I'm running Windows Vista Home Premium on a Toshiba Satellite laptop and the only other window open is my email account on GoDaddy, but this happens even when that is not open. My hard drive LED begins glowing steady "on" when this occurs when usually it is flashing or not glowing at all. It frequently happens when changing facebook pages or trying to close facebook. Sometimes I get a "wait" hourglass, sometimes not. I have tried leaving the computer alone to let it sort out on it's own, and I have tried machine gun tapping on the "close" button. Either way the only resolution is a hot shutdown (hold down the computer power button until the computer shuts down) and wait a few minutes before reboot. On reboot, the same facebook page will open automatically and sometimes will lock up again when I try to close that window. On more rare occasions this lockup happens on sites other than facebook. My computer guru has looked at my setup and tells me my computer is fine and virus free. Since I'm a computer doof I don't know what he is talking about. Any ideas? Is there a difference between a "crash" and a "lockup" or do they mean the same thing?

    The Reset Firefox feature can fix many issues by restoring Firefox to its factory default state while saving your essential information.
    Note: ''This will cause you to lose any Extensions, Open websites, and some Preferences.''
    To Reset Firefox do the following:
    #Go to Firefox > Help > Troubleshooting Information.
    #Click the "Reset Firefox" button.
    #Firefox will close and reset. After Firefox is done, it will show a window with the information that is imported. Click Finish.
    #Firefox will open with all factory defaults applied.
    Further information can be found in the [[Reset Firefox – easily fix most problems]] article.
    Did this fix your problems? Please report back to us!

Maybe you are looking for