IS-H Events for Patient Change

Hy all!
My external application needs to be informed by IS-H in case of new patients or patient change.
Are there such events available in IS-H?
If yes: How can I configure such events? What interface has my application to provide?
Thanks in advance!

Hy Raimund,
if you want to have a solution NOW, you may use the existing the IS-H communication capabilities. Especially, the HCM for (hospital-) internal communication is relevant here. This modules covers standard messages (the so-called HCM-messages) that are produced in an asynchronous event-driven manner.
And there are/should be events and messages for broadcasting patient manipulation.
For more information, check the "Commu ication Guide for External System Partners".
You should reach it via the following url:
https://websmp201.sap-ag.de/HEALTHCARE-GUIDES
If you don't need the solution NOW, just be informed that driven by the current ESOA activities there also will be outbound service operations providing you with patient manipulation information. I don't have the actual schedule at hands, but it'll be provided by one of the coming enhancement packages (EhP) of ERP2005.
Also an IHE conformant integration (IS-H as "patient demographics supplier"; partner system as "patient demographics consumer" according to the "Patient Administration Management" Integration Profile (see widly published IHE technical framework documentation) should be supported with this approach.
This last integration approach will probably be the best "long term" approach for most of your integration issues.
kind regards
Ali G.

Similar Messages

  • Event for a change in the cursor legend

    Hi!
    I need to recognize a change of the cursor properties by the user through the XY-Graph Cursor Legend! (i.e. changing cursor color)
    There seems to be no event for that in my event structure (although there is a event for changing the plot properties through the plot legend).
    I'm using LV2009SP1.
    Greets CtheR

    I need the recognize any change of the cursor props made by the user. Like that:
    Watching the cursor-Property for a change would be no help because there are automatic changes that I do not want to catch.
    Something similar to the plot attribute change event in an event structure would be most helpful:
    Greets CtheR

  • Event for value change of an input field

    Hello,
    I'm a newbie in WD4A.
    I've got a input field. Is there a event that's fired, if the value of an input field is changed?
    Regards Christian

    No.  There is only an event when the user presses enter.  You can check the online help for all events of all UI elements.
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/d7/ef8841e3af1609e10000000a155106/frameset.htm
    In 7.02 there is an AJAX based change event on the inputField, but it is not available as a normal WD Event. It instead triggers the attached SearchHelp without the WD Phase Model.  This is the new SuggestValues feature in 7.02.

  • Integration Event for tracking changes to Activity Primary Contact

    I want to trigger an Integration Event when the Primary Contact of an Activity is changed.
    But, when I try to configure the Integration Event, on the "Field Tracking" page, I don't see any fields that relate to Contact.
    It appears that I can track changes to Service Request, Campaign, Dealer, Delegated By, Lead, Opportunity, Owner & Site - but not Contact?
    The only workaround that I can think of is to write workflow/default rules that will copy any field related to the Activity Primary Contact into a Custom Field on the Activity Record - and then tracking changes on that Custom field - but have so far failed to achieve that either.
    Anybody have a solution?
    Chris

    Helpful, but we're six weeks away from our R16 date - I'm on R15 and may just have to cope without this integration for a while.

  • Event for Material Change and Delete

    Experts,
      Is any Standard events available to trigger the workflow when the material is changed or deleted from the material master.

    First check any event is getting Triggered or not. If yes job done use it if not then find user Exit from which you can trigger event by writing code.
    You can make use of FM
    SAP_WAPI_CREATE_EVENT
    SWE_EVENT_CREATE
    to trigger custom event.
    You can check this code
    FUNCTION zwf_process_honorarium .
    ""Local Interface:
    *"  IMPORTING
    *"     VALUE(I_EMP_NUMBER) TYPE  PERNR_D
    *"     VALUE(I_EMP_NAME) TYPE  ENAME
    *"     VALUE(I_BEGIN_DATE) TYPE  BEGDA
    *"     VALUE(I_CURRENT_SAL) TYPE  ANSAL
    *"     VALUE(I_HON_SAL_GRD) TYPE  TRFGR
    *"     VALUE(I_HONORARIUM_SAL) TYPE  ANSAL
    *"     VALUE(I_JUSTIFICATION) TYPE  CHAR100
    *"     VALUE(I_PERCENT_DUTY) TYPE  INT1
    *"     VALUE(I_END_DATE) TYPE  ENDDA
      INCLUDE <cntn01> .
      DATA:i_emp_details TYPE STANDARD TABLE OF p0001,  "Employee Details
           wa_request    TYPE p0001,                    "Workarea for Employee details
           v_country_grp TYPE molga,                    "Country SubGrouping
           v_object_key  TYPE sweinstcou-objkey,        "Key for the buisness object ZWOBUSHONO
           v_request_det TYPE zwf_ms_honorarium.        "PCR data
      CONSTANTS: c_bo_hono     TYPE swo_objtyp VALUE 'ZWOBUSHONO',
                 c_event_hono  TYPE swo_event  VALUE 'HonReq',
                 c_infy_type_1 TYPE infty      VALUE '0001'.
    Event Container declaration
      swc_container i_event_cont.
      swc_create_container i_event_cont.
    Reading the INFO TYPE 0001 to obtain the
    Employee details
      CALL FUNCTION 'HR_READ_INFOTYPE'
        EXPORTING
          pernr           = i_emp_number
          infty           = c_infy_type_1
          begda           = sy-datum
          endda           = sy-datum
        TABLES
          infty_tab       = i_emp_details
        EXCEPTIONS
          infty_not_found = 1
          OTHERS          = 2.
    SY-SUBRC check is not required as the error
    handelling will be done by WorkFlow rule
    resolution.
    Filling up the PCR data in structure v_request_det
    which will be passed to event container.
      v_request_det-emp_number     = i_emp_number.
      v_request_det-name           = i_emp_name.
      v_request_det-begin_date     = i_begin_date.
      v_request_det-current_sal    = i_current_sal.
      v_request_det-hon_grade      = i_hon_sal_grd.
      v_request_det-hon_grd_sal    = i_honorarium_sal.
      v_request_det-justification  = i_justification.
      v_request_det-percent_duty   = i_percent_duty.
      v_request_det-end_date       = i_end_date.
      CLEAR wa_request.
      READ TABLE i_emp_details INTO wa_request INDEX 1.
      IF sy-subrc = 0.
      Retrieving the Country SubGrouping for the employee
        SELECT SINGLE molga
          FROM t001p
          INTO v_country_grp
         WHERE werks = wa_request-werks
           AND btrtl = wa_request-persk.
      ENDIF.
    Sending the relevant data to event container
      swc_set_element i_event_cont 'RequestData'     v_request_det.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'PersonalArea'    wa_request-werks.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'CountryGrouping' v_country_grp.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      swc_set_element i_event_cont 'EmpSubGrp'       wa_request-persk.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
    Raising the event to trigger the workflow
      v_object_key = i_emp_number.
      CALL FUNCTION 'SWE_EVENT_CREATE'
        EXPORTING
          objtype           = c_bo_hono
          objkey            = v_object_key
          event             = c_event_hono
        TABLES
          event_container   = i_event_cont
        EXCEPTIONS
          objtype_not_found = 1
          OTHERS            = 2.
      IF sy-subrc <> 0.
    No Processing needed.
      ENDIF.
      COMMIT WORK.
    Thanks
    Arghadip

  • Event FOR contract  Changed in SRM

    Hi frnds
    I am using business object BUS2000113 FOR SRM .
    I want to know which event gets triggred when the contract is released .
    I have used ChangeVersionSaved & saved events but still i m not able to triger my workflow .
    Can you plz help .
    Thansk

    I think the Saved event gets triggered. Please check whether the linkage is activated and the start condition is configured in SWB_COND. Also make sure you are properly creating a contract. It would be good if you first check the contract and then create it.
    Thanks
    Arghadip

  • Why do event structures trigger duplicate events for value changed, sometimes?

    In this simple VI, an event structure is used to trap a value change within a color array.
    However, when you run the VI and change a color, it triggers the event structure twice.  The second time the structure executes under the value change event, an impossible state exists where the structure is executing as if oldVal<>newVal, but they are in fact, equal.
    I have had to write around this many times.  Why?
    Attachments:
    doubleEventExample.vi ‏91 KB

    For completeness, I reported it also in the February bug thread, so it should get noticed:
    http://forums.ni.com/ni/board/message?board.id=Bre​akPoint&message.id=3385#M3385
    LabVIEW Champion . Do more with less code and in less time .

  • Event for cell change

    Hello,
    how is it possible to determine in a JTable if a user switch from the actual cell to an other cell?
    Tanks!

    JTable table = new JTable(...l)
         public void changeSelection(int row, int column, boolean toggle, boolean extend)
              super.changeSelection(row, column, toggle, extend);
              System.out.println(row + " : " + column);
    };

  • How does one check for view changes to avoid unnecessary reprovision?

    I have a couple of ActiveSync resources that I setup custom userforms and workflows for to sync up only a couple of attributes from each one. With ActiveSync whenever a user account is modified it processes the modified account no matter which attributes were actually modified. For example, if I want to sync the email attribute from an Active Directory resource the ActiveSync workflow receives modification events for all changes to Active Directory accounts, not just email. With my simple workflow what often happens is that I reprovision the accounts even when no changes are made. The downside of this is that the Lighthouse account is marked as being modifed by the ActiveSync proxy user even though no real changes were made and extraneous server tasks are generated that have no results.
    In my workflow I would like to somehow predetermine if the reprovision will actually make changes and if not cancel the workflow. Is there some utility class that I can use to check for modifications or some option I can pass into the reprovision workflow to accomplish this? I probably could check the user.update.accounts[resource].changes before calling reprovision but that would seem to require a lot of express coding and comparisons.

    I don't have an answer for you but I do have a question. I have been researching the issue of which channels in the 2.4 band are permitted according to law in the various countries in Europe. We have offices in Germany, France, Spain, Netherlands and England and I was wondering which channels we are permitted to use. Do you know or could you point me to a document I could read?

  • Workflow for material changed

    Hi Gurus,
    I would like to implement a workflow with a mail which wil be triggered whenever a material is changed.
    I have created a workflow using SWDD..How can I link this workflow to Material change transaction(MM02)..
    I am new to this workflow...Pls help me...
    Thanks in advance...
    Regards,
    Saj

    Hi,
    you need to create an event for your change document  BOR 1001006 thru SWEC.
    create a similar event in your BOR Event and use this event in the Basic Data of your WF.
    So whenever a material is changed your event would trigger your WF.
    Hope I am clear,
    any issues reply back to this thread.
    Aditya.
    P.S
    just a suggestion, could you put in your name instead F1 (as I like referring to names, though I just address all by initials) offcourse no hard n fast rule,
    but since its a <b>wonderful Forum</b>, lets know each other .
    Well my friend I still have no issues with your Display Name, it was just a thought.

  • Can I switch calendars (Ex. "night shift" to "day shift" cal) with a repeating event, but ONLY for that one event??  It asks "for all events or only this event" if i change the time.  But it changes ALL events when i try and switch calendars.  Any help??

    I have 2 calendars set up for my work schedule, a "night shift" and "day shift" calendar.  I've set up repeating events fro Fri/Sat/Sun 3-11pm "night shifts" and Mon/Tues 7am-3pm "day shifts".  But lets say for example that I swap shifts and instead of working nights on Saturday like I normally would, I am now working days.  I want to change that in my calendar.  When I go to change the event, if i change the TIME it asks if i want to change all event or ONLY this event.  no problem....just this single event.  but when i go to change the event from the "night shift" calendar to the "day shift" calendar, it changes ALL the repeating events, and not just that one single event.   can anyone help with this???  am i doing something wrong?  is there a way to do this or not with the new iCal program???  i used to do this and never had any problems.    Thank you!

    You need to follow iPhoto terms since we only know what you tell us
    what are you calling folders - in iPhoto folders can not hold photos - albums hold photos and folders hold albums or other folders
    The basic default view of photo is by event (iPhoto '08 and later)
    Exactly what you you trying to do?
    LN

  • What is the equivalent for 'On Change of' Event in ABAP OBJECTS?

    What is the equivalent for 'On Change of' Event in ABAP OBJECTS?  and how to use it in LOOP control?

    hi,
    There is no such Equivalent in OO ABAP.
    You have to Raise your own Event within tha class checking the value of the field whose value is changing.
    Regards
    Sumit Agarwal

  • I've been using samsung for a long time and I just changed into an iPhone 5s and the most important thing I need is my calendar appointments , but in the notification center it doesn't show my events for tomorrow , will there be an updated or this soon?

    I've been using samsung for a long time and I just changed into an iPhone 5s and the most important thing I need is my calendar appointments , but in the notification center it doesn't show my events for tomorrow and it doesn't even show more than 1 event  , will there be an updated or this soon? Or should I just shift back to samsung?????

    Go to settings/notification centre and make sure today vie and calendar day view are both on

  • Custom Event for Purchase Requisition Create, Change & Delete

    Hello Experts,
    I want to create a custom event which triggers on Purchase Requisition Create, SAP provide's standard event's for purchase requisition release but not for create.
    What are all the steps and how to create a new event.
    Thanks in Adavance,
    Sandhya.

    Hi Sandhya,
    may i know the reason why you are trying to create custom methods.
    You have business object BUS2009(for PR line item wise release) and BUS2105(for PR overall release).
    Both those business object have events RELEASESTEPCREATED (for PR creation) and SIGNIFICANTLYCHANGED(For PR change).
    Even then if you want to create custom events, create a subtype of the standard business object, then click on events, and then select create. Now create your Z-events, say ZCREATED (For creation), ZCHANGED (for changed) and ZDELETED (for deleted). Now select each event, click on edit -> Change release status -> object type component -> to be implemented. Follow the same for all the events. Then select each event, click on edit -> Change release status -> object type component -> to be released.
    Now click on your custom object, click on edit -> Change release status -> object type component -> to be implemented.Then click on your custom object, click on edit -> Change release status -> object type component -> to be released.
    After this in SWEC tcode, click on new entries. Select change document object as BANF, business object as say ZBUS2105 and event as ZCREATED. make sure radio button on create is checked.
    Similary create entries for ZCHANGED event and ZDELETED.
    Select on change and on delete radio button for event ZCHANGED and ZDELETED event respectively.
    let me know if you have any queries.
    Regards,
    Raj

  • Data change Event for Information Broadcasting

    Hello Forum
    This is regarding problem with "Data change Event for Information Broadcasting".
    We have integrated the evening in a separate chain which is scheduled after the transaction data load.
    In the settings for the event we have mentioned the infoprovider name based on which the reports are to be distributed.
    Now, when the process chain is executed it does not distributes any reports though the data is changed in the infoprovider.
    However when executed again its distributing it,any ideas what the problem is ?
    Regards
    Ashish

    Hi,
    Check out the t.code  RSRD_LOG.
    have a check at the below link for monitoring via email
    http://help.sap.com/saphelp_nw04/helpdata/en/44/5b2341144ba52fe10000000a155106/frameset.htm

Maybe you are looking for