BPM and ALEAUD Response - Looking forward for help

Hi ,
I tried the using the concepts from the blog (/people/mitesh.parekh/blog/2008/12/01/receiving-aleaud-as-acknowledgment-in-ccbpm)where i have the Message ID which entered into BPM
but not the message Id which triggered the IDoc send . I think i m missing some small detail where i need to capture the send step MSG Id
i'm aware that its not possible to get the Msg id in BPM . How is that ABAP Mapping in the above blog captures the message id ?
TRY.
l_msgid_ref = param->get(
IF_MAPPING_PARAM=>MESSAGE_ID ).
catch CX_SY_REF_IS_INITIAL into oref.
endtry.
Alternatively one more thread has some info
if someone can let me know where you can get this SourceDocNum would be great in this RFC Look up . in the thread Re: Idoc Acknowledgements and BPM.
"<?xml version=\"1.0\" encoding=\"UTF-8\"?><ns0:RFC_READ_TABLE xmlns:ns0=\"urn:sap-com:document:sap:rfc:functions\"><DELIMITER/><NO_DATA/><QUERY_TABLE>IDXRCVPOR</QUERY_TABLE><ROWCOUNT/><ROWSKIPS/><DATA><item><WA/></item></DATA><FIELDS><item><FIELDNAME>SNDLAD</FIELDNAME><OFFSET/><LENGTH/><TYPE/><FIELDTEXT/></item></FIELDS><OPTIONS><item><TEXT>IDOCNUMBER EQ &apos;"
+ SourceDocNum
+ "&apos;</TEXT></item></OPTIONS></ns0:RFC_READ_TABLE>";
Since i do not have the Message ID it just creates the below payload from my mapping
This is the request being sent out using the ABAP Mapping as the Messgae ID is null .
<?xml version="1.0" ?>
- <ns0:ZALEAUDIT4XI xmlns:ns0="urn:sap-com:document:sap:rfc:functions">
<S_DOCNUM>0000000000000000</S_DOCNUM>
<S_MESTYP />
<S_SNDSYS />
<S_UPDDAT>00000000</S_UPDDAT>
</ns0:ZALEAUDIT4XI>
Looking forward for Help .
Edited by: Priyalakshmi Bhuvanendran on Aug 8, 2009 2:28 AM

Can someone help one the ALEAUD Response - IDOC Capturing Problem . I would appreciate your help . Thanks

Similar Messages

  • Newbie looking forward for help in isUserInRole

    I want to configure the tomcat role with my users record, but I don't know when/how the tomcat can set the clientside with roles, so that the next request can have the workds in the head that I can call isUserInRole for identication. In other words, once if I want to configure the tomcat identicate the role/user from ldap other than current xml setting, how can I set the user "with roles" he just been identicated , for example, by one form identication?
    thanks for any tips,
    Fredeirck van targero

    go into tomcat-users.xml lying in you tomcat\conf folder
    an type under <tomcat-users>
    <tomcat-users>
    <role rolename="manager" />
    <role rolename="admin" />
    <user username="admin" password="admin" roles="admin.manager" />
    </tomcat-users>you can remove preexisting roles an usernames if you want or just leave them there
    now shutdown tomcat manually and startup again to setup new variables
    access your tomcat startpage
    usually localhost:8080/
    if on own machine
    an now you will be able to access both manager and admin pages...

  • How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    How can I fix error code 131:4? Licensing for this product stopped working. I have windows vista home edition and CS4 Design Premium. I downloaded licensing zip file for windows but I can't seem to get it to launch. Look forward to help from anyone

    Steve,
    I appreciate your answer.  While it might work, I'm a bit hesitant to remove the other programs as a possible solution since they are all currently working.
    With Acrobat 9 Pro failing with the OS 10.7 upgrade, I'm hoping that there is a less severe solution.
    Since the trigger appears to be 10.7 and may have something to do with the discontinued support of Rosetta, I could be spending a few hours working on a reinstall without a change.  Yes, it might work.  The "might" is the part that makes me hesitate.
    Is anyone else out there on OS 10.7 and running Acrobat 9 Pro?  Any issues with anyone else?
    Thanks Steve.  I do appreciate your offering a solution.  I may end up trying it if nothing else comes together.
    Mark

  • Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

    Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

    Why I can't update my ios to ios6? It always display that..Error in updating..I am using ipad3. Please help me update my ios. Looking forward for your kind support and cooperation. Thank you.

  • I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    I just purchased Adobe Photoshop Elements 13 for a Mac and trying to install. I am at the point to enter the serial number but it won't take letters. What do I do and where do I go for help?

    If the code you are trying to enter has letters then you are not looking at a serial number.  A serial number only contains numbers - 6 sets of 4 numbers.
    Find your serial number quickly
    You might be dealing with a redemption code.  This is especially so if you purchased it from a store or the like.
    Redemption Code Help
    http://helpx.adobe.com/x-productkb/global/redemption-code-help.html

  • Fiscal date DD-MON and year end looking forward

    Trying to figure out the best way to look forward to the new year and back to the old year when comparing sysdate to a table column fiscal that is formatted DD-MON. The process works perfectly during the year, since is uses current year when comparing data. But at the end of the year, we do not see anything past 12/31 or before 1/1 in a new year. Any ideas? I was thinking of declaring a couple of values and based on sysdate Sep, Oct, Nov, Dec to add 1 year to Fiscal months Jan, Feb, Mar, Apr so they appear as the next year and vice versa for the first months of a new year, subtract one year from the fiscals to indicate previous year. Has anyone worked on something like this in the past?

    Look in to this, i am substituting values for the year, so you will get idea.
    The fisccal date you have is month end all the time or it is all the dates?
    SQL> ed
    Wrote file afiedt.buf
      1  WITH T AS
      2    (SELECT '01-DEC' dt  FROM dual
      3     UNION ALL
      4    SELECT  '05-JUL'   FROM dual
      5     UNION ALL
      6    SELECT  '10-JAN'     FROM dual
      7     UNION ALL
      8    SELECT  '30-MAR'    FROM dual
      9     )
    10  --ens of data
    11  SELECT TO_DATE(dt||'-'||&y,'DD-MON-YYYY') fisc_date,
    12         TO_DATE(dt||'-'||&y,'DD-MON-YYYY')+180 NEW_DATE,
    13      ADD_MONTHS(TO_DATE(dt||'-'||&y,'DD-MON-YYYY'),6)
    14* FROM T
    SQL> /
    Enter value for y: 2008
    old  11: SELECT TO_DATE(dt||'-'||&y,'DD-MON-YYYY') fisc_date,
    new  11: SELECT TO_DATE(dt||'-'||2008,'DD-MON-YYYY') fisc_date,
    Enter value for y: 2008
    old  12:        TO_DATE(dt||'-'||&y,'DD-MON-YYYY')+180 NEW_DATE,
    new  12:        TO_DATE(dt||'-'||2008,'DD-MON-YYYY')+180 NEW_DATE,
    Enter value for y: 2008
    old  13:     ADD_MONTHS(TO_DATE(dt||'-'||&y,'DD-MON-YYYY'),6)
    new  13:     ADD_MONTHS(TO_DATE(dt||'-'||2008,'DD-MON-YYYY'),6)
    FISC_DATE NEW_DATE  ADD_MONTH
    01-DEC-08 30-MAY-09 01-JUN-09
    05-JUL-08 01-JAN-09 05-JAN-09
    10-JAN-08 08-JUL-08 10-JUL-08
    30-MAR-08 26-SEP-08 30-SEP-08

  • Buying a used iMac G5, tips and things to look out for?

    What tips could you guys give me on when looking for a used iMac G5? I like the 20" models specifically and it seems the models are all over 1.6GHz so the speeds are fine.
    I currently own a G4 1.67 PowerBook and did a bit of reading up on that before I bought it, seeing what things to look out for what things turned faulty after a while and such. Such as the logic board and the 1 RAM slot going faulty on a few models, recalled batteries, which helped a lot in buying a used one.
    I'm looking for a new desktop but can't afford to fork out over 1 grand for the new iMac's and the speed of my PowerBook is enough for my usual browsing and processing and few photos. So please don't bother telling me to buy a new one cos new is always best, I don't mind spending reasonably less and having a decent machine still - 1.67 15" PowerBook has proved well :P

    Don't buy a new intel. buy a refurbished one from Apple. The PPC architecture is on its way out, few programs are being written for it, and most new applications are only for intel. I realize that even a refurb might cost a bit more than you planned to spend, but it will be worth it down the road.
    Look in the [Apple Store|http://store.apple.com/us/browse/home/specialdeals/mac?mco=MTE3NjY], the choice changes daily, so just keep you eye open for the one you want and snap it up. And get Apple Care as well.
    Let us know what you ended up with please,

  • HT203175 drag and drop not working desperate for help

    Can you possibly help me with my drag and drop?
    All of a sudden itunes won't let me drag purchased tracks or tracks from library on to my ipod. I have read you need to make sure you have checked manually manage music and videos and I have done that. It worked one minute and now has stopped. I don't understand why drag and drop has just been fine then suddenly stopped working.
    Thanks.

    Oh right... All my devices are on the SAN and have been set as edit-in-place. The files in question were copied from the regular media watch folder to the media device. So basically just one folder on the SAN to another.
    It has to be more than just the watcher, because two of the files in question were added by a subscription response that has worked fine for me before.
    Thanks,
    Mario

  • Looking forward a help  from Sniper13

    To Sniper13:
    Several days ago ,I read the answers you give for the performance problem with oracle database .There ,you mentioned you run a example and solved the problem.
    Now I am working with a Multimedia DataBase . Until now, I have successfully use a proceduer to store the Video Data into Oracle.But I used the BufferedOutputStream to store the data in the form of bit_stream into database through JDBC . Now ,I must find out a way to play the data I had stored . I spend several days to read the JMF Guider,but I am not very clear about the way I can pull the data from the database to the DataSource to Create a player . I just download a sample code from sun which can play the video I stored in my disk . I need your help .
    thanks ,

    Thanks a lot for your good advice. Follow your advice ,I read the Oracle intermedia doc,and I understand how to play the OrdVideo object through JMF .
    But, after reading that doc,I am a bit confused about the BLOB class and OrdVideo &Ordaudio class. At first ,I store the video data into the database as a stream .But ,form the doc,If I want to play it in jmf,I must store it as a OrdVideo object . I am not sure about the difference between BLOB object and OrdVideo object. I am sure there must be some relationship between BLOB and Ordvideo class,but I can't understand it very well.
    I hope you can give me some explanations about the difference of blob object and Ordvideo object ,and there relationships .
    If I want to store the video as Ordvideo object ,How?
    thanks again for you worm_hearted help!!

  • Multibridge extreme and shake - crying out loud for help

    Hi everyone
    Can someone please tell me how to output video from shake to external broadcast monitor? I have two 21 inch panels and 17 inch broadcast JVC monitor, and everytime I'm hitting that tv button in Shake, signal goes to my second LCD. I tried to turn on decklink desktop - did not change anything....
    I saw some posts relating to the same problem, but I just can not fix this... so frustrating
    any ideas?
    banging my head against the wall

    Well, that's quite interesting! I'm also using a DeckLink card and it's working really fine, and that should be the same for you!
    So, first, in the BMD control panel, check the "Enable video desktop" button and reboot your computer.
    Go to the Displays control panel and check "show displays in menu bar"
    This will add a display menu to the menu bar, and at the bottom of this menu, you should have a grayed line called Display 3 and below you can choose different resolutions. Choose the resolution that matches your broadcast monitor resolution.
    Next lunch Shake, and correct the broadcast monitor setting (usually 3 on a dual monitor + broadcast monitor configuration).
    Then click the monitor button to send the video to the broadcast display.
    And normally, it should work.
    Keep in mind that opening several video applications (like FCP and shake and color and motion) could be problematic as each application won't share the same video output.
    You can use multiple video applications at the same time, but only enable the video output on the application you are using, and disable the others.
    Hope it helped!

  • I have "chosen to open Firefox Setup 5.0.1.exe" and saved the file but nothing happens, my version has not updated, I don't know what the next step should be and I'd be grateful for help with this issue.

    I've tried to do this several times on several days, on an HP a1620n running Windows XP Media Edition, Version 5.1. Nothing happens after I get the Download Complete message. Thanks.

    Thank you! My solution was slightly different, but in the end, seeing what was going on in the Help menu in the browser did the trick. Turned out I had been stuck for who knows how long "downloading" a version 3! Also had a toolbar to disable but not the Ask.

  • TS1363 When I try to sync my iphone and itunes I get a message that itunes is not connected to the internet and my computer is-thanks for help

    When I open itunes on my computer which has had my lists for a long time I get a message that says the itunes is not connected to the internet which is it,
    I can't therefore sync songs to my iphone-what do I need to do? -thanks for help

    The new iTunes has a somewhat different look from the previous version.  You can get the old look back if you prefer it by doing View > Show Sidebar in iTunes.  Or you can adapt to the new look.

  • Cannot get my Palm Pixi to activate, and cannot create an account for help since I don't have a phone number.

    Just decided I want to renew my plan on my phone but I cannot activate it to even do so, I don't have any other way of contacting verizon other then this or going to a store

        Hi quentinb- Let's get your service back in action! Are you looking to user the device for prepaid or postpaid service?
    Thank you,
    YaleK_VZW
    Follow us on Twitter @VZWsupport

  • Why do i need to register and sign in to ask for help? Why doesn't firefox permit me to make Startpage my primary browser

    I am linux <! (not that you assholes give a shit) ->. I can't make Startpage my default search engine. I get message : Sorry (yeah, right) you need Mozilla-based browser to install a search plugin" <! I'm using Mozilla with ubuntu but you guys have code fucked up. Do I go somewhere else or can you fix your screw-ups? ->
    ''locking as a duplicate of https://support.mozilla.org/en-US/questions/1048837''

    Install iTunes on your Acer and you can back up the iPhone. Or back it up to iCloud. If you do not back it up you can get it unlocked, but you will lose all of your content.
    You can get iTunes from http://www.apple.com/itunes.
    Even after unlocking I'm not sure it will work on Straight Talk, because last time I checked ST used Verizon as its carrier, and an AT&T iPhone 4 is not compatible with Verizon's network. You can probably use it on Net 10 or T-Mobile once it is unlocked.

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

Maybe you are looking for

  • Recovering erased data from a back-up hard drive

    Hello, I erased a folder full of data on my back-up hard drive (Western Digital), and need to recover if it possible. I deleted it and then emptied my Trash, but have not written over it yet. How can I recover this folder? Thanks.

  • Printer doesn't save paper size in saved printer setting

    I have saved an A3 printer setting with the paper size as A3 but it always load the dafult paper size (A4) even when I load my A3 setting. Am I doing something wrong? Canon iR ADV C2020 with the latest driver on 10.8.4

  • [svn] 4377: Bug: BLZ-292 - Data Push sample does not work in BlazeDS Turnkey

    Revision: 4377<br />Author:   [email protected]<br />Date:     2008-12-22 16:16:25 -0800 (Mon, 22 Dec 2008)<br /><br />Log Message:<br />-----------<br />Bug: BLZ-292 - Data Push sample does not work in BlazeDS Turnkey<br />QA: Yes<br />Doc: No<br />

  • Crystal Reports Server problem

    Hi, i'm an administrator but i cann't create new objects in Crystal Reports Server. What's happening? pls. help

  • Recording ONLY new episodes of a series is not allowed!

    I recently upgraded to quantum. Now when I try to record a new season of a TV series I am not allowed to record just the first run (new episodes).....I am forced to,record the new episodes and ALL or the reruns. I just spent 40 minutes on the phone t