Synchronising MDM with R3 | Relationships

Hi ,
   Got a question for you folks . Let’s say we make parent-child relationships within the same table . We can see the relationships in the data manager and also can manipulate it (adding more children to parent or removing a few from the parent or restructuring the multiple hierarchy ) . Now can this restructuring be directly pushed as it is in the R3 system ? Basically can we syndicate relationship alterations done in MDM to an R3 system and bring it in Sync to the changes done in the MDM system ?
Regards
Deepak Singh

MDM Cosolidate master data not master schema from external system and then send data back to R3 system. Schema design is independent of both the system in MDM and R3. So as per my knowledge there is no possibility for the same.
BR,
Alok

Similar Messages

  • Problem with ejb 3.0 entity beans with manyToMany relationship

    Hello everyone!
    I am using struts 1.2.9 and java ee 5 sdk update 2 for my enterprise application. Besides others i have these entity beans Targetgroup.java and City.java, (i would upload file but i do not know how:)
    with manytomany relationship with join table.
    when user updates Targetgroup, by clicking on web page with checkboxes and textfields, struts dispatch action calls following method stateless bean:
    public void update(String firmId, String targetgroupId, String newGender, String newMinYearsOld, String newMaxYearsOld, String[] newCities) {
    TargetgroupPK pkForUpdate = new TargetgroupPK(targetgroupId, firmId);
    Targetgroup targetgroupForUpdate = find(pkForUpdate);
    targetgroupForUpdate.setGender(newGender);
    targetgroupForUpdate.setMinyearold(Integer.parseIn t(newMinYearsOld));
    targetgroupForUpdate.setMaxyearold(Integer.parseIn t(newMaxYearsOld));
    //pronalazenje gradva za koje je vezana ciljna grupa
    Collection<City> newCitiesCollection = new ArrayList<City>();
    for(int i = 0; i < newCities.length; i++){
    String tmp_city_name = newCities;
    City city_obj = cityFacade.find(tmp_city_name);
    newCitiesCollection.add(city_obj);
    targetgroupForUpdate.setCityidCollection(newCities Collection);
    parameter newCities represents names of cities which user checked on his update page. When the page is showen to him some cities are allready check because they were connected with Targetgruoup when it was created (targetgroup).
    this code throws following exception:
    [#|2007-07-26T12:13:36.993+0200|SEVERE|sun-appserver-pe9.0|javax.enterprise.system.container.web|_Threa dID=16;_ThreadName=httpWorkerThread-8080-0;_RequestID=f79d9c50-86b0-4b6c-96ab-97956dfb39c1;|StandardWrapperValve[action]: Servlet.service() for servlet action threw exception
    javax.ejb.EJBException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.
    javax.transaction.RollbackException: Transaction marked for rollback.
    at
    .com.sun.enterprise.web.connector.grizzly.WorkerTh read.run(WorkerThread.java:75)
    javax.ejb.EJBException: Transaction aborted; nested exception is: javax.transaction.RollbackException: Transaction marked for rollback.
    at com.sun.ejb.containers.BaseContainer.completeNewTx (BaseContainer.java:3659)
    at com.sun.ejb.containers.BaseContainer.postInvokeTx( BaseContainer.java:3431)
    at com.sun.ejb.containers.BaseContainer.postInvoke(Ba seContainer.java:1247)
    at com.sun.ejb.containers.EJBLocalObjectInvocationHan dler.invoke(EJBLocalObjectInvocationHandler.java:1 92)
    at com.sun.ejb.containers.EJBLocalObjectInvocationHan dlerDelegate.invoke(EJBLocalObjectInvocationHandle rDelegate.java:71)
    at $Proxy149.update(Unknown Source)
    at audiotel.sms.actions.backoffice.TargetgroupDispatc hAction.updateOrDelete(TargetgroupDispatchAction.j ava:132)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Nativ e Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Native MethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(De legatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:597)
    at org.apache.struts.actions.DispatchAction.dispatchM ethod(DispatchAction.java:270)
    at org.apache.struts.actions.DispatchAction.execute(D ispatchAction.java:187)
    at org.apache.struts.action.RequestProcessor.processA ctionPerform(RequestProcessor.java:431)
    at org.apache.struts.action.RequestProcessor.process( RequestProcessor.java:236)
    at org.apache.struts.action.ActionServlet.process(Act ionServlet.java:1196)
    at org.apache.struts.action.ActionServlet.doPost(Acti onServlet.java:432)
    at javax.servlet.http.HttpServlet.service(HttpServlet .java:727)
    com.sun.enterprise.web.connector.grizzly.WorkerThr ead.run(WorkerThread.java:75)
    |#]
    exceprion is throwen ONLY when in parameter newCities are city names allready connected to Targetgroup. when NewCities contains names of
    City objects which are not connected to Targetgroup it works fine, but it's of no use for me, because user must be able to add or remove certian cities from relaionship with Targetgroup. I think it's because there are rows in join table that contain primary keys of city and targetgroup which are connected so perisistence manager cann't write them again.
    i thought it was going to figure it out by itself, and only update those rows.
    Does anyone know what is the problem and solution?
    Thanks! (forgive my spelling errors :)

    solved the problem!
    I moved code from sesion bean to struts action as follows:
    CityFacadeLocal cityFacade = lookupCityFacade();
    //prikupljanje novih podataka o ciljnoj grupi
    String newGender = ctf.getGender();
    String newMaxYears = ctf.getMaxyears();
    String newMinYears = ctf.getMinyears();
    String[] newSelectedCities = ctf.getSelectedCities();
    //niz imena gradova se prevodi u kolekcju objekata City
    Collection<City> newCitiesObjCollection = new Vector<City>();
    for(int i = 0; i < newSelectedCities.length; i++){
    String tmpCityName = newSelectedCities;
    City tmpCityObj = cityFacade.find(tmpCityName);
    newCitiesObjCollection.add(tmpCityObj);
    //setovanje novih podataka
    targetgroupForUD.setGender(newGender);
    targetgroupForUD.setMinyearold(Integer.parseInt(newMinYears));
    targetgroupForUD.setMaxyearold(Integer.parseInt(newMaxYears));
    targetgroupForUD.setCityidCollection(newCitiesObjCollection);
    //pozivanje update metdoe u session beany
    targetgroupFacade.edit(targetgroupForUD);
    //korisnik se vraca na stranu sa svim postojecim ciljnim grupama
    forward = mapping.findForward("backend.targetgroups");
    and now it works fine. I guess probelm was same transaction scope for Targetgroup and City entities. Now when they are separated it works.
    Thanks!

  • Hi everyone, I was wondering if someone can help me.  I recently got my first ever Ipod.  It's the new Ipod Nano 7th Generation.  I have tried to synchronise it with Itunes but it says "Connected, Eject before Disconnecting" but nothing happens.

    Hi everyone, I was wondering if someone can help me.  I recently got my first ever Ipod.  It's the new Ipod Nano 7th Generation.  I have tried to synchronise it with Itunes but it says "Connected, Eject before Disconnecting" but nothing happens.  I have tried uninstalling & re-installing Itunes but this didnt help. 
    Does anyone have any ideas? 
    Thanks for your help.

    I think the problem is that the iPod got set to Manually manage music and videos.  It needs to be set up for automatic syncing again.  Just unchecking that Manually manage music and videos setting does not do it.
    In iTunes 12, select the iPod in iTunes (using the device button), so that you see the iPod's "management" screen.  In the sidebar (along left side of screen), there are two headings (Settings and On My Device).  Under Settings, click on Music.  To the right, you see the iPod's Music screen, where you tell iTunes how to sync songs to the iPod.
    Check the box at the top for Sync Music.  That turns ON automatic syncing for music.  Below that, choose the option to sync Entire music library (assuming your music library fits completely on your iPod).  Otherwise, you can choose the option to sync Selected playlists, artists, albums, and genres and make your selections below.  Then click Apply.

  • How to find out the IBU of the logges in user with some relationship?

    Hi,
    How to find out the IBU of the logges in user with some relationship?
    Regards,
    Jaya

    Hi Jaya,
    I am not sure if i understood you correctly. Do you want to find the corresponding account of logged in User? If yes, then you can use the below FM:-
      CALL FUNCTION 'BP_CENTRALPERSON_GET'
        EXPORTING
          IV_USERNAME         = im_usr_name
        IMPORTING
          EV_BU_PARTNER_GUID  = lv_partner_guid
        EXCEPTIONS
          NO_CENTRAL_PERSON   = 1
          NO_BUSINESS_PARTNER = 2
          NO_ID               = 3
          OTHERS              = 4.
    Thanks and Regars,
    Rohit

  • I've added songs and vedios to iTunes in my computer then I synchronise it with my iPad the problem came to the video that I couldn't show the videos and the screen became black

    I've added songs and vedios to iTunes in my computer then I synchronise it with my Ipad3 ..... For the songs it was OK but for the vedios I got a message that  some format are not supported then the screen became black with no video or sound ....how can I get back the vedios...I'm afraid to make reset to the iPad otherwise I'll loose all the applications and media.. Any ideas please .... Thanks

    First of all - depending upon how you define resetting the iPad - you will not lose anything. If you erase all contents and settings - then you will lose everything. Don't do that!
    If the videos are not in the correct format - launch iTunes on your computer. Click on one of the videos in your iTunes library in order to select it. Then go to Advanced>Create iPad or Apple TV version and see if the video will convert. Do the same for the other videos and then select those to sync again with the iPad.
    To get the videos app working again, first quit it completely and restart the iPad.
    Go to the home screen first by tapping the home button. Quit/close open apps by double tapping the home button and the task bar will appear with all of you recent/open apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner to close the apps. Restart the iPad. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button.
    If the videos app still doesn't work, try this.
    Swipe to the right from your first home screen to get to the iPad Spotlight search. Type in the name of any of your movies in the field at the top. when the movie appears in the search - tap on it and it should hopefully start to play. Let it play for a minute or so - hit done - go back to videos app and see if all is OK.

  • Org Unit and Cost Center not displaying in 0001 with A012 relationship

    Hi Guru's,
    Kindly help me in this regard ,
    Whenever i hire a person to a position which has an A012 relationship (Chief Position) then Org Units and Cost centres are not getting displayed in IT0001 .
    But when i hire a person in the same org unit with A003 relationship ; both Org units and Costcentres are getting displayed
    I have used an LSMW for uploading relationships and objects and i have also run integration reports for the same but still i am not able to display org unit and cost centre in it0001 when i hire a person with A012 relationship .
    Kindly Help

    both great advice, also, check this link:
    http://help.sap.com/saphelp_45b/helpdata/en/14/d22fe48435d111950d0060b03c6b76/content.htm
    within this information there are various reports to run, which help recon OM and PA integration.  it will help you find your data problem and then fix the data for you if you follow step by step.
    best regards,
    michael

  • 6021 and synchronising contact with a company name

    Hello, does anybody know if it is possible to synchronise contacts with no pre name but only a company name?
    I can only get the names and extra info of these contacts on my 6021 but no company name.
    For the 6600 there is a seperate PC suite that can do the trick but is it also possible with the suite for my 6021.
    I am using version 6.83.14.1
    Nokia 232>8110i>7110>6600>N95

    As far as I can see the series 40 phones only allow 1 name field containing both the first and the last name. For example: when names are being stored in Outlook with both a first and last name they are combined in the name field within the phone after synchronisation. Putting an 'a' in the name field results in omly displaying an 'a' and a phone number...
    The most simple solution would be to look for a company name and place it in the phone's name field if both first and last name are not available in Outlook.
    But it seems Nokia support is not willing to look at the problem. They don't respond to email or anything
    Nokia 232>8110i>7110>6600>N95

  • MDM with separated ABAP and Java Instance

    We installed SAP ERP system with SRM server and Portal as Java instance.
    We use Oracle and have 2 oracle schemas/instances: ABAP and Java.
    After mounting of MDM server and DBMS configuraiton (to Java instance) we have the following oracle objects:
    Oracle Schema A2I_XCAT_DBS
    2 oracle users: A2I_XCAT_DBS (owner of the schema) and MDMADMIN
    2 tablespaces A2I_A2I_XCAT_DBS.DBF and A2I_A2I_XCAT_DBS_IX.DBF within the main dbs directory E:\oracle\<sid>\102\database
    The used tablespace was set to PSAPTEMP
    Questions:
    1) How can the DBMS configuration will be removed, because the oralce path  E:\oracle\<sid>\102\database was wrong
    Unfortunately we would like to avoid merge MDM and Portal data in one and the same tablespace PSAPTEMP
    2) Where can we find the oracle configuration for MDM with Java Schema, but using their own tablespace?

    Are you basically trying to put a new User Interface (UI) on top of MDM because you do not want to use the standard MDM UI?  If so, then yes you could write a custom WebDynpro and use the MDM API.  We evaluated WebDynpro as an option, but instead we built a new Adobe Flex based UI that sits on top of the MDM Catalog and it totally awesome!  There is a sample on our website (www.simplifying-it.net), but we are making some changes to the look/feel... however, the sample demo on the website should give you an idea.
    If you have any questions, please let me know.
    Thanks,
    Mark

  • Mdm with solution manager

    Dear Friends
    i want to link mdm with solman for customizing distribution.
    Can anyone guide me or write step by step procedure for the same.
    Will reward points for sure.

    Hi Prakhar,
    I dont know much about solman. However, I was able to find few links related to MDM root cause analysis with solman. I do not know how useful it will be, but here is the link:
    [https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/60ec1de2-76c6-2a10-7198-fa4e9dd07e11]
    Hope it helps.
    Thanks and Regards
    Nitin Jain

  • How to create sap query with "or" relationship

    dear experts,
    I need a report to display the employee whoese WSR is
    changed in the month for infotype 0007.
    that is ,we want to search with selection
    begda OR endda between 2008-01-01 and 2008-01-31.
    how to create sap query with "or" relationship?

    hi use like this,
    CALL FUNCTION 'HR_READ_INFOTYPE'
      EXPORTING
        pernr                 =  p_pernr
        infty                   =  '0007'
       BEGDA                =  p_date1
       ENDDA                 = p_date2
      TABLES
        infty_tab             = itab .
    hi use this by passing the pernr to fm and giving the dates low and high in the p_date1 and p_date2.
    loop at itab where condition.
    endloop.
    may it helps u,
    regards,
    venkat.

  • MDM with Biztalk

    Hello there,
    1. MDM with biztalk ... It's possible? or i need XI/PI?
    2. Licenses?
    Goodbye, and thanks!

    Hi,
    MDM can syndicate/send Master Data only in XML or Flat files.
    MDM puts this file in a particular folder on MDM server by Automatic Process.( or MDM can also send it to anywhere on ur desktop by manual process)
    If Biztalk can pick this XML file Automatically then u dont need XI/PI
    Otherwise XI/PI can very well pick file from MDM folder Automatically using FTP(File) adapter.
    Thanks,
    Maheshwari

  • MDM with Web Dynpros

    Hello,
    I am new to MDM, Can anybody please let me know how could I use MDM with Web Dynpro's? I have read the article "MDM connectivity to java application" that could be the way to use if the sda are available!
    Regards,
    Dharmi

    Dharmi,
    This is excellent, in fact we are also working on a similar scenario. We already have developed some web dynpros which call the API's exposed by MDM and display the data. (Very soon we will write a blog on the same). However the problem is these web dynpro's become very specific with the respository you are dealing with. If that is all you want they that should be fine.
    However, if you want to come iViews just like SAP then we mihgt have to think out of the box.
    Have you seen the example of Applied.com? the back for these sites is SAP MDM. However these are the J2EE applications which are accessing the API's of MDM and also with other applications for placing the order.
    The ideal solution that I can think of is to publish a catalog using MDM API's, give additional functionality of shooping cart, once everything is done, place the order which will create a sales order (SAP R/3 or any other ERP) via SAP XI (SAP EP communicating with SAP R/3 via XI.
    Regards,
    Ravi

  • When synchronising photos with iphone ios5 get 2 folders with same photos on iphone? sollution?

    Hello,
    When i try synchronising photos with iphone ios5  i get 2 folders with the same photos on the iphone?
    Does annyone know how to resolve this?

    Idd,
    when i look at the albums, i see filmrol (where the photo's i take with my ipone get placed) and i also see photo library and the name of the folder i am syncing. is there a way to view only one of them?
    THX already for your help.

  • How to set this filters with 'or' relationship

    Hi Pros,
          I have a query as follows, rows and columns are all in structures.
                                                       regular_employees
                 active_employees
                 lay_off_employees
         I want to set up filter as ' employ_status = 0 or employ_subgroup =2' for this query, please tell me how to set this filters with 'or' relationship.

    Hi Yifei,
    Create a formula and enter this (let's name this FORMULA_KF):
    ((EMPLOY_STATUS = 0) OR (EMPLOY_SUBGROUP = 2)) * enter value IF_TRUE + enter value IF_FALSE
    Then create the condition to HIDE the rows having those values to be filtered (if this is your purpose)..
    Like,
    FORMULA_KF <> 1
    Is this what you want mate?
    Regards,
    Loed

  • MDM with BI

    Hi guys,
    can any one recommed me the reading material to learn integration between MDM and BI??? Like, guide or some thing where step by step instruction are shown.
    Regards,
    NK

    Hi Naeem,
    We generally use MDM as a Data Quality engine in MDM-BI integration to generate accurate and correct reports.
    You can integrate MDM with BI in 2 ways:
    1. Using XI to establish communication between MDM and BI
    2. Using MDM ABAP APIs : For MDM SP05 and with above we can use ABAP APIs for integrating with BI.
    Some of the links related to MDM-BI Integration:
    http://help.sap.com/saphelp_nw70/helpdata/en/45/5d3bfaa9ef3bdfe10000000a1553f7/frameset.htm
    Step by Step process:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/b01e4269-f744-2b10-929b-fa7b49aac540 -
    Part 1
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d06a92de-614e-2b10-4989-d913c2154a64 -
    Part2
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/00f0d853-936f-2b10-1880-d3deb1fbd858 -
    Part3
    Related threads
    Re: MDM-BI INTEGRATION
    how to extract the data  mdm to bw and generate the reports.
    Regards,
    Varun

Maybe you are looking for

  • IDevices and Apple composite AV Cable - Not Working

    Hi... I've had problems connecting my iPods (iPod 30GB Video 5.5Gen, iPod Touch 1st and 2nd Gen, with latest capable software up to date) and my iPhone 4 (iOS 6 up to date) to my Samsung LED TV Series 5 using the original, Apple, composite AV cable.

  • Mac Mini Server Reinstall

    Hi, I was just wondering if it is possible to reinstall snow leopard server on a mac mini server from an image on the second hard drive? Thanks Mervyn

  • Quick question about rendering and exporting with multiple presets

    Probably a very simple question but I'm pretty new to PPro, so I'd appreciate your help... I've got an uncompressed AVI video that I want to export to mp4 using several presets (that means several exports). What I intend to do is the following: I cre

  • What is best way to transfer files from an older imac to a new one?

    I have time machine on old intel imac.  I have 700gb used on old and don't want to transfer everything (trying to use this  "set up" process to also keep old unused stuff from transferring to the new imac). I can use firewire to transfer.  I have rea

  • Upgarde SAP Netweaver 2004

    Hi all,           Can i Upgrade SAP Netweaver 2004 components to SAP Netweaver 2004s.If not how do i order the SAP Netweaver 2004s package.How do i install CAF in SAP Netweaver 2004. Plz answer my above Questions ASAP. Thanks and Regards Balakrishna