Syndication event for new MDM PI Adapter in MDM 7.1

Hi,
We have setup the new MDM PI Adapter for MDM 7.1 and have created interface in PI using this new MDM PI adapter. All neccesary steps as mentioned in the installation guides are done.
Also all necessary remote systems/ports/syndication maps are created in MDM, and syndication is running fine on the MDM side (using the syndication server, so not manually!)! The syndication files are created in the Outbound/../Ready folder, so again, on MDM side everything looks OK.
However, when the syndication server has run, there's no syndication event triggered (or at least not captured by the MDM PI Adapter), hence PI is not picking up the files from the outbound folder. It looks like PI is not getting any syndication event, or at least is not catching the event, since monitoring on PI side does not show us any trigger.
Now I have the following questions:
1. Does anyone know how we can verify/monitor if MDM raises any syndication event (the export log in the console of MDM 7.1 does not say anything about an syndication event that is raised, only that the export itself was succesfull)?
2. Is there any additional setup to be done on MDM side in order to make sure that the syndication event is raised as soon as the syndication server is ready (or is the syndication server ALWAYS raising the event, independent of using the MDM PI adapter)?
If anyone else has any experience with the new MDM PI Adapter for MDM 7.1, please share us your valuable information. Thanks in advanve for your answers/advice.
p.s. We are using MDM 7.1 (build 7.1.01.72).
Regards,
Marcel

Hi
We are also currently experiencing a similair issue. Seems to occur when some sort of matching activity occurs on the MDM Server. What happens is that syndicated files remain in the 'Ready' folder on the Outbound Port. In the PI Netweaver Trace Log files we start seeing this error message:
Jul 13, 2009 4:34:41 PM com.sap.mdm.logging.MdmLogger warning
WARNING: NotificationDispatcher - Connection failure. Original exception: 'java.net.SocketException: Connection reset'.
If we restart the Connector and Adapter from the NetweaverJ2EE Application Admin screen, this files still remain in the READY Folder. However, if i syndicate another data record into that folder, the syndication for that file work as well as for the rest of the files that were sitting in the READY folder. Seems like the "failed" files seem to latch off the syndication event.
Doesn't seem like the stability and robustness is there?
Any feedback would be greatly appreciated.

Similar Messages

  • Hi all, Please suggest a case where there is a requirement for new SOAP sender adapter module. I wanted to develop a module but in my current project i am unable to find any such requirement.

    Hi all, Please suggest a case where there is a requirement for new SOAP sender adapter module. I wanted to develop a module but in my current project i am unable to find any such requirement. So please give me inputs for the same..
    Thank you,
    Vinay Kumar A

    You can try converting a synchrnous soap call to asynchronous using a custom module
    Here your module will send a response back to the sender system and make an asynchronous call forward

  • Dots (events) for every single day in calendar (NEW issue)

    Ever since I upgraded to FW 2.0 I have had "dots" appear in every single day of the calendar (symbolizing events) even though I have no events for those days.
    Now - I KNOW about the issue with the recurring/repeating events as well as events that "begin" after they "end." That said, I have checked EVERY single event I have in the phone and in the calendar in Outlook and NONE of the events are repeating/recurring and all of them are set up properly with correct start/end times.
    From my searching, the above seems to be what's commonly known to cause this problem. Those don't fit MY problem.
    The odd thing here is, if I go backward in the month view on the calendar on the phone to February, there are no dots. There are also no events. However, if I go to March on the month view in the calendar, every single day has dots (and continues). The really weird thing here is if you look at the calendar in the month view while it's on March, you can see the last week of February at the top. And in that last week, while in the "March" view, the last week of February ALL has dots. But again, if you move back to "February," all those dots that were there disappear.
    So...I'm at a loss now. I've wiped the events off the phone. Edited/pruned/etc. events in the Outlook calendar, and then re-synced with the order to overwrite that which is on the phone. Still no luck. Is this a glitch that needs to be corrected with new FW? Would a restore help? I just don't really know anymore..
    Thanks,
    John

    I am having the same issue. However, I am syncing my calendar to my work computer and the issue presented itself when I upgraded to Office 2007 from 2003. I have since removed Office '07 and did a restore to my iphone which cleared the issue. Then did a sync again to Office 2003 and the issue re-appeared. Not sure if '07 added something to my calendar that is hidden but it is very frustrating.

  • How to set a default start and/or end date for New Events based on trigger date.

    I'm using the CalendarActivityListener to get current row when clicking on an existing event. As per previous posts this listener gives you access to event detail including Start Date, End Date, etc.
    However, what I want to do is to default the start (and end) dates for New Events based on the trigger date.
    I've tried the CalendarListener and can grab the Trigger Date from it - however, I can't see a way to pass this directly to the popup/dialog I'm using to create the new event.
    At present I'm putting the TriggerDate into the ADFContext session scope e.g. ADFContext.getCurrent().getSessionScope().put("TriggerDate",calendarEvent.getTriggerDate());
    Then, I've tried multiple approaches to try and "get" the TriggerDate from session scope to drop it into my new Calendar Event basically, I'm trying to default the InputField(s) associated with the Start Date using the value from the session - I've tried
    1. setting the default value for the InputField in the jspx using a binding expression i.e. value="#{sessionScope.TriggerDate}" - this actually sets the value appropriately when the jspx is rendered but, when I go to create I get a NPE and I can't debug. I assumed that it might be a Date type issue - it would appear that CalendarListener provides a date of type java.util.Date and that the StartDate attribute of my VO/EO/table is a DATE and therefore requires oracle.jbo.domain.Date so I tried casting it - to no effect
    2. Using a Groovy expression *(StartDate==null?adf.context.sessionScope.TriggerDate:StartDate)* in my calendar's EventVO to default the Start Date to the same result
    Any thoughts or ideas?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • How to Set A Default Start Time For New Events In Calendar?

    How to Set A Default Start Time For New Events In Calendar?

    John,
    Thanks for that suggestion - could not get it to work. However, I did manage a different approach. I finally determined the sequence of events in terms of how the various events and listeners fire (I think).
    Basically, the CalendarActivityListener fires, followed by the listener associated with the Calendar object's Create facet, followed finally by the CalendarEventListener - the final is where the TriggerEvent is available and then finally, control is passed to the popup/dialog in the Create facet. So, my approach of trying to set/get the TriggerDate in the user's HTTP session was doomed to failure because it was being get before it had been set :(
    Anyway, I ended up adding a bit of code to the CalendarEvent listener - it grabs the current BindingContext, navigates through the DCBindingContainer to derive an Iterator for the ViewObject which drives the calendar and then grabs the currently active row. I then do a few tests to make sure we're working with a "new" row because I don't want to alter start & end dates associated with an existing calendar entry and then I define the Start and End dates to be the Trigger Date.
    Works just fine. Snippet from the listener follows
    BindingContext bindingContext = BindingContext.getCurrent();+
    *if ( bindingContext != null )    {*+
    DCBindingContainer dcBindings = (DCBindingContainer) bindingContext.getCurrentBindingsEntry();+
    DCIteratorBinding iterator = dcBindings.findIteratorBinding("EventsView1Iterator");+
    Row currentRow = iterator.getCurrentRow();+
    if ( currentRow.getAttribute("StartDate") == null)+
    currentRow.setAttribute("StartDate", calendarEvent.getTriggerDate());+
    if (currentRow.getAttribute("EndDate")==null)+
    currentRow.setAttribute("EndDate", calendarEvent.getTriggerDate());+
    *}*

  • Is light faulty on new 60w power adapter for my Macbook?

    Had to order a new 60w power adapter for my Macbook a couple of weeks ago -- bought it from the Apple Store (the new design adapter). When it's plugged in it turns green, then immediately turns red to recharge -- all normal. Once fully recharged the adapter light turns/stays green. But after awhile the adapter light goes out altogether. The icon shows it's charging, but the red (and green) light is off. If I remove the adapter and plug it back in the lights will come on again.
    Is this normal?
    Thanks.

    I think I'm experiencing the same problem. My computer charges but the light goes back and forth from being on or off, orange or green. I'm a little disappointed that the light could be burned out, but I guess a little light like that can't last forever. Oh well.
    Is it worth pursuing a replacement from Apple since I still have AppleCare? Just wondered.
    Anyway, this is really helpful information. Thanks for sharing.

  • New power supply adapter for MD-100

    Is there any place where I can get a new power supply adapter (or a new power supply) for my Nokia MD-100 speaker? I have a UK adapter now, which was inlcuded, but I want one for swedish sockets instead. I have an "external" adapter now, but I hoping I can get a proper adapter which fits the power supply.
    Thanks.
    Regards,
    Joakim.

    Hi Joakim,
    Do you have the original UK charger for the Nokia PowerUp? If it's the one with the removable pins would you sell me the UK pins? And perhaps someone else has the Swedish clip, I've got a spare USA one.
    Cheers

  • ICal default calendar for new event

    When I sync a new iCal event from my PDA to iCal on my Powerbook, it defaults to a named, published calendar rather than "unfiled". Because of this, I immediately have to go through and change any new or changed events that have been sync'd to prevent them from being incorrectly published. I want to use the "unfiled" (and unpublished) calendar as my default calendar for new or changed events that I sync from my PDA, how do I do it?

    If you are using iSync, press the Tungsten icon in its main window to drop down the configuration pane. Select the Unfiled calendar under the Calendar section as the Put events created on Palm into: option.
    In the Missing Sync for Palm OS, double-click the Mark/Space Events conduit and select Put items from read-only calendars into: Unfiled. You have to create this calendar in iCal if it is not present already, before it can be selected in the Missing Sync.

  • DB Adapter: Polling For New Records returns the First record multiple Times

    I Polling for New or Chnaged Records against DB2 on iSeries. The DB Adapter returns the first record from the Table multiple Times. If the Table has 5 records it displays the first record 5 times. I am using BPEL 10.1.3.1 Can anyone help me with this.

    Hi there,
    please check out the DBAdapter trouble-shooting guide:
    http://download-east.oracle.com/docs/cd/B31017_01/integrate.1013/b28994/app_trblshoot.htm#CIHFEHFA
    I am copying an entry from there into here:
    A.1.21 Some Queried Rows Appear Twice or Not at All in the Query Result
    Problem
    When you execute a query, you may get the correct number of rows, but some rows appear multiple times and others do not appear at all.
    This behavior is typically because the primary key is configured incorrectly. If the database adapter reads two different rows that it thinks are the same (for example, the same primary key), then it writes both rows into the same instance and the first row's values are overwritten by the second row's values.
    Solution
    Open Application Sources > TopLink > TopLink Mappings. In the Structure window, double-click PHONES. On the first page, you should see Primary Keys. Make sure that the correct columns are selected to make a unique constraint.
    Save and then edit the database partner link.
    Click Next to the end, and then click Finish and Close.
    Open your toplink_mappings.xml file. For the PHONES descriptor, you should see something like this:
    <primary-key-fields>
    <field>PHONES.ID1</field>
    <field>PHONES.ID2</field>
    </primary-key-fields>
    Thanks
    Steve

  • Event for preventing a new entry in DBTable

    hi all,
    please suggest me a event in table maintenance to have a check for preventing the entry into the table. i tried event 18 but wen the error msg is displayed it comes out of record entry window which is to be avoided.
    regards
    Madhu

    My friend  it is  not
    18 . it is 05 -> Creating New Entry. 
    so that  you can validate with the User   and  do the validation  and update the table .
    "Below is the code for  it
    Select 05 for an event for “Creating a new entry”.
    This event will be triggered while creating a new entry in SM30 or using the TCODE.
    Form Name: AT_NEWENTRY (Enter key)
    Double Click on the editor.
    form at_newentry.
    Ztab-ZCOUNTRY = ‘India’.
    Ztab-ZCREATEDATE = sy-datum.
    Ztab-ZCREATETIME = sy-uzeit.
    endform.
    Create another event: 02 for “After Save”
    FORM after_save.
    Ztab-mandt = extract+0(3).
    Ztab-ZCOUNTRY = extract+3(3)..
    Ztab-ZCREATEDATE = sy-datum.
    Ztab-ZCREATETIME = sy-uzeit.
    MODIFY ztab.
    ENDFORM. "after_save
    Step 4: Create Transaction Code.
    Go to SE93.
    Transcation code: ZTAB
    Transaction text Test Table Maintenance Events
    Transaction: SM30, Skip first Screen
    Default Values:
    VIEWNAME ZTAB
    UPDATE X
    Reward  points if it is usefull....
    Girish

  • Create new event for BOR object  for vendor creation

    Hello,
              I AM working on workflow.. Requrement is that , when a vendor is created I wanted the workflow to be triggered..
    But I dont find any bussiness object for this...
          Then I have created customized BOR object super type as LFA1. And created new event. Now I need to assign functionlity to this event, that is As soon as the vendor is created this event should be triggered so that I can use this as the start event for the workflow..
    Plz guide me ...
    Regards and Thanks,
    Poornima...

    Hi Poornima,
    Create a subtype and add the event in the BOR.
    Now call the FM  Userexit / BADI.
      CALL FUNCTION 'SAP_WAPI_CREATE_EVENT'
        EXPORTING
          OBJECT_TYPE             = 'ZKNA1'
          OBJECT_KEY              = OBJECT_KEY
          EVENT                   = 'ONSAVE'
    *   COMMIT_WORK             = 'X'
    *   EVENT_LANGUAGE          = SY-LANGU
    *   LANGUAGE                = SY-LANGU
    *   USER                    = SY-UNAME
    *   IFS_XML_CONTAINER       =
    * IMPORTING
    *   RETURN_CODE             =
    *   EVENT_ID                =
       TABLES
         INPUT_CONTAINER         = IT_CONTAINER
    *   MESSAGE_LINES           =
    *   MESSAGE_STRUCT          =
      IF SY-SUBRC <> 0.
        ENDIF.
    &******************Reward Point if helpful*************************&

  • Is there an event for a composite has a new child control?

    I want to know is there an event for a composite has a new child control?
    For example,
    Composite parent = new Composite();
    Label child = new Label(parent, SWT.None);
    I want to know the parent composite is getting a child label when new label
    create then immediately.
    Thanks.
    Frank

    Also, I got this comment (a bit of a warning) from Dimitri:
    <blockquote>I just saw this pattern used by <i>[customer]</i> - they (used to check) if the member was senior, and if it was, it was responsible for some periodic cleanup tasks and whatnot.
    This worked fine in the test application and broke immediately when we added dedicated cache servers, or standalone JMX console etc, i.e. it is perfectly possible for the Console to be senior without any application classes in it's classpath, or for the dedicated cache server to be senior and only application servers have logic in place to run stuff.</blockquote>
    In other words, depending on your deployment, it may not be as simple as just "being senior", you may also want to use a "Role Name" for example (configurable and accessible per member).
    Peace,
    Cameron Purdy
    Oracle Coherence: Data Grid for Java and .NET

  • How to i make a new event for a new folder?

    In imovie i made a new movie and every clip is going into all one event from my first movie ever made. i want to make a new event for each video but im not sure how please help

    iMovie 10 :  see: http://help.apple.com/imovie/mac/10.0/#mov1d890f00b
    iMovie 9:  see: http://help.apple.com/imovie/#mova719f959
    Geoff.

  • Get a event for a new received rtp stream in a player

    Hi!
    I'm trying to implement a RTP-player, that receives a AV-stream and play it. The special thing about this player should be, that even if the stream interrupts, the player wait's on the same IP and port for a new stream and open it in the SAME frame (not like jmstudio in new window).
    I try to catch the "ReceiveStreamEvent", so i can restart the player, but i don't get eny events for this. I tried to do it with a "RTPManager", but i don't know how.
    Does anybody has a example how to get the "ReceiveStreamEvent", so i know, the RTP-stream has been interrupted?
    Thanks
    Adam

    See AVReceive2 in JMF Solutions, in JMF web site

  • Imovie keeps getting hung up generating thumbnails for new events.  How do I fix this?

    I imported several movies from my miniDV camera without issue.  Yesterday I tried to import another movie, only about 30 minutes long to a new event, and the "generating thumbnails for new event" has taken 12 hours and is still not complete.  I tried to force quit and reopen the program it just starts the process again upon opening.  I went online and downloaded and installed the imovie updates.... still no luck. I can't even use imovie now because when I open it it just goes back to generating thumbnails.  Any thoughts?  Im new to the Mac, and I just bought this computer 3 days ago and want to love it, but this is frustrating.

    What version of iMovie 2011.  Make sure you have installed all updates.  There has been several updates addressing stability issues.  If you have a newer system there were compatibility issues.  Hopefully this will fix your issues.  I have a new 2012 MBP 13 and works fine.  It did lockup (pinwheel) 2x and has been fine.
    After the updates running Disk Utility and repair permissions as well.  Make sure things are correctly referenced.
    Good luck
    Brian

Maybe you are looking for

  • RAM and or Memory Question

    Hello, I have a Mac Mini (2011), and I just purchase it Tuesday, brand new. I got the i5 Model, and it came with 2gb of RAM. I got Final Cut Pro X, knowing I would need more RAM, before I even ran the program. My question is I have the DDR3 1gb card'

  • WIFI problem despite OS update 1.05.2304

    Hi, I bought 2 weeks ago the playbook 32GB. It worked well. Since I updated the last version, my playbook lost wifi connexion. All other device from my colleagues works well :  iPad, Xoom, iphone, blackberry torch etc... Please : dont give me a techn

  • HT1595 KEEP SAY LOADING BUT THE MOVIE NOT SHOW

    HI, I just rent the movie , but the apple TV keep say loading or ready to play in 1 hours ...52 min but the movie is not showing . I just maksure you not charing , because can't see movie and how can I fix that . Thank you !

  • Solaris 8 x86

    Dear Everybody, Would you please tell me, does oracle 9i support solaris 8 for intel x86? Thank you very much. Yours Sincerely, Stephen Hsu

  • How to add hierarchical Grid ActiveX in B1

    hi all i want to use hierarchical grid activeX provided by .Net in business one but unable to use it i can easily add the activeX in business form but unable to bound it with any datasourse. i want a grid which display all the data returned by any qu