How to throw event from R3 to NW using JRA?

Hi colleagues.
I would like to throw events from backend R3 system to a Java composite which is running in NW CE.
I red that this is possible with JRA. I have already created and deployed the Mbean, configured the NW server, created a JRA resource, set its parameters.
I have also created a Http connection to external server in R3 sm59.
The connection works fine when I click check button. However when I debug the Java code the debugger does not stop. So the event is not comming into the NW server.
I guess this is because the event is not thrown from the backend or because the IP address, port, path prefix is wrong. Can somebody tell me what are these values?
I would appreciate if someone who has already done something similar would share his / her emotions.
Thanks,
Balázs

Hi
  1st create ZFKK_SAMPLE_0020 and write the logic in it for your requirement. next in ZFKK_SAMPLE_0073 use the FM BAPI_CTRACDOCUMENT_GETDETAIL pass the document no you will get all the details of doc no then in your fm update or cleare the table using std FM.
FUNCTION ZFKK_SAMPLE_0299.
*"*"LOCAL INTERFACE:
*"  IMPORTING
*"     REFERENCE(I_KEYR1) TYPE  KEYR1_KK
*"     REFERENCE(I_SUCCESS) TYPE  CHAR1
*"  EXPORTING
*"     REFERENCE(RETURN) TYPE  BAPIRET2
INCLUDE <CNTAIN>.
  TYPES: BEGIN OF TY_DETAILS,
           OPBEL TYPE OPBEL_KK,
           CHCKN TYPE CHCKN_KK,
           BKREF TYPE BKREF,
           BETRZ LIKE DFKKZP-BETRZ,
           WAERS TYPE WAERS,
           BANKL TYPE BANKL_KK,
           END OF TY_DETAILS.
  TYPES : BEGIN OF TY_FINAL,
          OPBEL TYPE OPBEL_KK,
          HVORG TYPE HVORG_KK,
          TVORG TYPE TVORG_KK,
          VKONT TYPE VKONT_KK,
          VKBEZ TYPE VKBEZ_KK,
          BLDAT TYPE BLDAT,
          END OF TY_FINAL.
  TYPES : BEGIN OF TY_USERS,
          USER  TYPE SYSID,
          END OF TY_USERS.
  TYPES: BEGIN OF  TY_ZCABLMTST,
         HVORG TYPE HVORG_KK,
         TVORG TYPE TVORG_KK,
         END OF TY_ZCABLMTST.
  TYPES: BEGIN OF  TY_DFKKRH.
         INCLUDE TYPE DFKKRH .
  TYPES: END OF TY_DFKKRH.
  TYPES: BEGIN OF  TY_FKKOP.
         INCLUDE TYPE FKKOP .
  TYPES: END OF TY_FKKOP.
  TYPES: BEGIN OF  TY_RLBEL,
         RLBEL TYPE DFKKRH-RLBEL.
  TYPES: END OF TY_RLBEL.
  TYPES : BEGIN OF TY_EMAILID,
          USRID_LONG TYPE COMM_ID_LONG,
          END OF TY_EMAILID.
  TYPES : BEGIN OF TY_PERNR,
          PERNR TYPE PERSNO,
          END OF TY_PERNR.
  TYPES : BEGIN OF TY_SOMLRECI1.
          INCLUDE TYPE SOMLRECI1.
  TYPES : END OF TY_SOMLRECI1.

Similar Messages

  • How to export events from iPhoto in Iphone 5 to Mac?

    How to export events from iPhoto in Iphone 5 to Mac? Thanks

    Is this waht you want to do?
    It's built into the File Export function of iPhoto 9 (11).  Select what every photos you want and use that option to put each photo in a folder with the Event title it came from as in this test of six randomly picked photos:
    OT

  • How to get event from message?

    Hi,All:
    I write a run-time interface by CVI, I use TS_EngineRegisterUIMessageCallback to register my callback function, but when message passed to the callback function, as the type is struct IDispatch but not CAObjHandle, I don't know how to read event from message.
    Can you help me to solve it? Thanks
    Chang Zhang

    Hello Chang-
    If your question is simply how to obtain an object handle from an object of type IDispatch, have you investigated the function "CA_CreateObjHandleFromIDispatch"? I would recommend you look over the testexec.prj that is installed along with the TestStand engine (the CVI Operator Interface) and inspect how we handle our callbacks, this may help you understand how to go about emulating the behavior in your own project. To see this particular function in use it may be most helpful to look in the file 'engine.c' and inside the function UIMessageDeferredCallback here you will see the IDispatch pointer being handled and decoded for use by the TS engine.
    Regards,
    Elaine R.
    Applications Engineering
    National Instruments
    http://www.ni.com/ask

  • How to Throw Music From Your Xperia Tablet S

    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick
    Solved!
    Go to Solution.

    Sony wants your feedback! http://bit.ly/WcYjMO
    This video will show you how to throw music from your Xperia™Tablet S.
    If you have any further questions please feel free to ask away. I will do my best to find the answer you are looking for!
    - Patrick

  • How to extract text from a PDF file using php?

    How to extract text from a PDF file using php?
    thanks
    fabio

    > Do you know of any other way this can be done?
    There are many ways. But this out of scope of this forum. You can try this forum: http://forum.planetpdf.com/

  • How can I print from my iPad 2 using an HP Artisan 810 printer.

    How can I print from the iPad 2 using an Epson Artisan 810 printer.

    You said HP in your post title and Epson in your body text, but I think it is actually an Epson Artisan 810.
    If that's right, then the free Epson iPrint app should work for you - it lists your printer as one that it supports: http://itunes.apple.com/us/app/epson-iprint/id326876192?mt=8

  • How to exctract data from a report to use it in a process

    Hi! I would like to know how to exctract data from a report to use it in a process. Let's say that I have a report which have following fields: id_person, name_person. And then, I want to make a process which introduce the id_person (from report) into an associative tabel. How can I reffer to the fields from my report?
    I was thinking about something like that( this should be the code from my process)
    insert into associative_table(id_person)
    values(id_person) or
    insert into associative_table(id_person)
    values(Report_name.id_person) but it doesn't work....
    Thank you very much.

    Another option, use collections.
    Create an on load process that loads all the rows you would have in your report into a collection:
    begin
    HTMLDB_COLLECTION.CREATE_OR_TRUNCATE_COLLECTION(
    p_collection_name => 'ASSIGNED_CALENDAR_CONTACTS' );
    for x in (SELECT CONTACT_ID, CONTACT_FNAME, CONTACT_LNAME
    FROM CONTACT
    WHERE InStr( pkg_CalendarMgr.f_FetchContactIDsForDay( TO_DATE( :P3_CALENDAR_DT, 'YYYYMMDD' ), 'OF' ), CONTACT_ID ) > 0 )
    loop
    htmldb_collection.add_member(p_collection_name => 'ASSIGNED_CALENDAR_CONTACTS',
    p_c001 => x.CONTACT_ID,
    p_c002 => x.CONTACT_FNAME,
    p_c003 => x.CONTACT_LNAME);
    end loop;
    end;
    Then, instead of your report selecting from the table, have it select from the collection, this way your display will match what's in the collection:
    SELECT c001, c002 || Chr(32) || c003 CONTACT_NAME, 'Remove' remove
    FROM htmldb_collections
    WHERE collection_name = 'ASSIGNED_CALENDAR_CONTACTS'
    ORDER BY c003, c002
    Then you can have a button on the form that steps through the collection, one element at a time and does whatever you want it to.

  • How to read data from a router by using labview

    I am a  beginner labview. How to read data from a router by using labview ? 

    What kind of data are you trying to read?
    Does the router behave like a webserver that you log into?  If so, search the forums for threads discussing HTML.

  • How can I see from my contact who use iphone (ios 5) for contact with imessage?

    How can I see from my contact who use iphone (ios 5) for contact with imessage?

    Well, let take the personal service point of view : let say, I had two calendars on my iCloud account : one for work, one for my leisure activities.
    On my MacBook Pro that I use at home as well as at my office, I would want the two calendars to show and since I am alone in my office, I would want the alerts for both my work and my leisure activities to show (and make a sound at the same time).
    But on my iPad that I only use at home, I would only want my leisure activities alerts to show (and make a sound) and on my iPhone that I only use for work, I would only want my work alerts to show (and make a sound).
    That is a personal service that simply does not work.
    Why would Apple give us the opportunity to hide some calendars on certain devices but not allow us, on these same devices, to switch off the alerts linked to these calendars that we have chosen to hide ? Why having alerts of calendars that do not even show on these devices ?
    And I am an Apple fan since 1984, since the very first Mac. I still do believe Macs and Apple devices and/or software (iOS, OS X and others...) are much better and much more efficient than " Microsoft, Windows, Google and other Android devices and software.
    But that does not mean everything's perfect (and I find that quite normal).
    Nevertheless, in this case, letting alerts make a sound on a device where a specific calendar is not shown, that does not make any sense : when uncheking those calendars, the alerts linked to those calendars should be automatically switch off (but alerts should be able to work on the calendars that are shown.)

  • I am based in India, how do i buy from the app store using an indian credit card? The app store is saying that my apple id is valid only for US purchases and that I need a US credit card!

    I am based in India, how do i buy from the app store using an indian credit card? The app store is saying that my apple id is valid only for US purchases and that I need a US credit card!

    snigdhachavan wrote:
    so does this mean i cannot download anything from the app store.. ...
    Not the US Store... if you are in India.
    snigdhachavan wrote:
    ... i wanted to buy the Mac OS X Lion... how do i do the purchase?
    http://www.apple.com/in/mac/app-store/

  • How to Create PDF from Illustrator CS3 by using applescript?

    Hi Guys,
    Do some one knows how to create PDF from Illustrator CS3 by using apple script. If know, please give me the scripting.
    HARI

    Have you tried File>Scripts>SaveDocsAsPDF? There should be a folder of sample scripts installed in your AICS3 folder and a folder of documentation which contains an Illustrator AppleScript Reference which has examples.

  • "CLOSED":How to plan inventory from multiple orgs simultaneously using MRP?

    Hello everybody,
    How to plan inventory from multiple organizations simultaneously using SCP?
    My customer found that in supply chain planning (MRP) system always plans in single manufacturing organization, say, ATC, firstly. If set in organization item master, the source type as 'Inventory' and the source organization as another trading organization name, say, ANX. if there is insufficient inventory in ATC, SCP-MRP would plan in ANX, disregard of the inventory exist in ANX for the item.
    But for some items, there are both inventory in ATC and ANX and we want plan BOTH their inventory simultaneously instad of firstly ATC and then ANX.
    Is there any standard function in Oracle that can do so? I found that the sourcing rule cannot help in this case.
    A simple test case is described in
    https://gtcr.oracle.com/gtcr-dir/gtcr_4607/5580425.992/Alternative_to_plan_multi-org_MRP.doc
    Thanks
    Catalina
    Message was edited by:
    user447176

    Catalina,
    Net the inventory simultaneously? Its not quite clear what your client wants.
    Even in the old SCP, you can use sourcing rules to first net inventory in org1 and then net the inventory in org 2 via a transfer from rule. The key point is it is always incremental based on where you place teh demand and then you provide source to fill that demand.
    One restriction that ASCP still has up to 11.5.10 is that you can only have sourcing rules going in one direction. This means that you can't have a rule that sources ORG1 from ORG2 for item A, then have the revers in ORG2 sourcing from ORG1. That won't work, ASCP will randomly ignore one of the rules.
    The best choice may be to use GOP with a sourcing split % so that yo do consider the inventory in both orgs when demanding the order, but it would still be done by checking ORG1 then ORG2.
    Hope this helps.
    Kevin Creel

  • How do I print from my iPad mini using Epson imprint app.

    How do print from my iPad using my iPad mini.

    Re: How do I print from my iPad mini using Epson iprint app.

  • My Adobe Photoshop looks completely different.  How did it change from what I am used to using?

    My photoshop elements looks totally different from what I have been using.  How can I find the simplier version I am used to? 

    When did the version change to 10?   I used it in March and it was the one I was used to.  It was much simplier.  Is there another Adobe Photoshop besides Elements?
    ==============================
    Patti Farley - Albuquerque, NM - US
    [email protected]
    505 417 5730
    ==============================
    Date: Tue, 7 May 2013 11:22:43 -0700
    From: [email protected]
    To: [email protected]
    Subject: My Adobe Photoshop looks completely different.  How did it change from what I am used to using?
        Re: My Adobe Photoshop looks completely different.  How did it change from what I am used to using?
        created by 99jon in Photoshop Elements - View the full discussion
    Hold down the CtrlShiftAlt keys and simultaneously click on the Edit button on the welcome screen. After a few seconds release the three keys and look behind the welcome screen by closing it. Alternatively hold down the three keys whilst  clicking on the desktop icon for the Editor or PhotoshopElementsEditor.exe in the Programs folder. Keep holding down all three keys for a few seconds; then release. You should get the settings option. When you see a pop up box with the words: Delete Adobe Photoshop Elements Settings File? Click on Yes Then wait whilst Elements rebuilds the preferences.
    https://lh4.googleusercontent.com/-S6Kjmq-x08U/USJJS91-teI/AAAAAAAABIg/jpqUlTmNez4/s320/Se ttings.jpg
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5298329#5298329
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5298329#5298329
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5298329#5298329. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Photoshop Elements by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • How to delete events from iPhone/iCal

    How can I delete old/no longer happening recurring events--or any events--from my iPhone?

    If you see the "+" button then you have not clicked on the event you want to delete.  When you do you will see another screen that looks like the one below.

Maybe you are looking for