Custom Data Model Document/Link MDM

Hi Expert,
We implement MDM in this year.
we want create custom data model. Is any SAP document/link for custom data model and load data to custom data model?
Need your response.
Thanks and Regards

Hello,
To create Data Model, you can refer to MDM Console Guide, to download http://service.sap.com/installmdm71.
To load data from an SAP System we have IDoc, and ABAP Proxies, for this we require an Middleware tech, SAP PI is recommended as it come with pre-delivered object that can be used.
If you need more clarity, do post your query
Regards,
Abhishek

Similar Messages

  • How can we get the value of the key field in a custom data model using governance API?

    Dear Team,
    How can we get the value of the key field in a custom data model, to be used for manipulation of the change request fields using governance API?
    Any kind of help would be sincerely appreciated.
    Thanks & Regards,
    Tushar.

    Hi Michael,
    Thanks for direction. Let me give more context on this as I'm interested to get more details..One of the issue was to read cross entity field values on UI based on user action and set other entity field behaviour...It is similar to what is being posted here.
    For ex: Reading MTART from Basic Data UIBB in MM MDG UI and set the field properties in some other custom entities say ZZETEST. This cannot be done using UI BADI as it only supports single entity at a time and not cross entity. So alternatively we found a solution where we can enhance existing PLMB feederclass cl_mdg_bs_mat_feeder_form by reading the model and the entity as needed as it it proved that it supports cross entity UI field behaviours and so business requirements.
    This is a workaround for now.
    So the question is How do we achive it using governance API for cross entity field behiaviours.?or what is the right way doing this.
    Can we do that using governance API and its' methods?
    In the Governance API doc you provided below has referring to below external model as part of gevernance API.
    The active or inactive data (before or during the derivation or the check) can be read
    with the external data model interface IF_USMD_MODEL_EXT with the method READ_CHAR_VALUE and
    the corresponding READ_MODE parameter. To avoid unnecessary flushes (derivations), the NO_FLUSH
    parameter should b
    e set to ‘X’.
    Thanks
    Praveen

  • Issue in creating a custom data model from BP

    Hi Team
    We have a requirement to create a custom data model by copying data model BP. I have successfully created new data model ZP . I have copied the UI for searching from BP. Issue is when i search a business partner  ideally it should not display any entries because i have just created the data model, But it is taking entries from BP and getting displayed. Please let me know how to map data model to search UI. I dont see option USMD_MODEL here

    Hi Imran,
    actually that is not an issue but a designed feature. I'm afraid that you need to re-think your whole project. The explanations is rather simple:
    Data model BP in MDG is a so called Re-Use Area data modell. This means that active data (records that are currently not stored in a change request) are saved in existing SAP ERP data base tables like BUT000 for the business partner master data and LFA1 or KNA1 for Vendor or Customer master data.
    If you copy data model BP to ZP you still refer to the same active area. You will always find the same active objects - no matter which data model you are actually using for the user interface. The only difference wil occur for objects being currently processed in a change request. In that case a separation between BP and ZP is possible. But this won't help to solve your issue.
    From SAP side I can only recommend not to copy BP but to find a different way of integrating your project needs into BP.
    Best regards
    Michael

  • BADI to validate data input for custom data model.

    Hi,
    I have a custom data model which has Material as the key field. When the user enters the Material number and clicks on CONTINUE, he is taken to the second screen where he has to enter data and description of the change request (the standard familiar screen). Now when the user fills the data and submits the record I need to do data validation and throw an error accordingly, Can anyone please help me out with the BADI or a solution to achieve this result.
    Any kind of help would be sincerely appreciated.
    Regards,
    Tushar.

    Hello Tushar
    Path is - General Settings - Business Add-Ins- BADI - Define Validation / Enrichment - You can check all the relevant BADI's here. Click on display and then you have filter option. Add your data model in filter. This is useful for Finance. You have check for MM.
    Kiran

  • Power Pivot Data Model with Linked Table

    Can anyone provide me with some suggestions as to how to accomplish the following in Power Pivot?
    I have the following Pivot Table fields. I'm trying to create a data model to allow me to filter all of the projects by the selected Fiscal Year. The Fiscal Year table is a dimension I created to group the data by.
    I'm considering separating Projects into multiple tables such that 1 table is for Year1 information, another table is for Year2 information (includes Year2FiscalYear, Year2BudgetCAP, etc.).
    I think what I need to do is create a measure to allow me to filter the records by fiscal year. Anyone have any ideas?
    Thanks,
    Roland

    Hi Greg,
    The data is coming from Project Online (OData feed) and SharePoint lists (all within Project Online). I'm creating an Excel Report.
    The reason I can't use Power Query is because refreshing a report that is built using Power Query is not supported via browser. Power BI is needed to do this. On the other hand if I build an excel report using Power Pivot only, the browser refresh functionality
    works.
    The Year1FiscalYear, Year2FiscalYear, etc. are all enterprise custom fields in Project Online. Therefore I have some control in being able to change the format of the data. I'm looking into what are some options on my side to configure Project Online or
    SharePoint lists to make building the model simpler...
    Thanks,
    Roland

  • Persist custom data in document / Is ASB-CSB, Command the only way?

    I have a need to persist custom data set (PMString for now) in a document, say for example source URL. Basic Persist sample suggests using implementing suites and commands. I was wondering if there is a quick way of doing such a simple task. XMP may be?
    Thanks

    Hi Carl,<br /><br />What you need is the header file : 'IWFPParamaSerial.h'<br /><br />>#include "VCPlugInHeaders.h"<br /><br />>#include "IPMUnknown.h"<br />#include "WFPID.h"<br /><br />>class IWFPParamSerial : public IPMUnknown<br />{<br />public :      <br />     enum { kDefaultIID = IID_IWFPPARAMSERIAL };<br />     virtual void SetParams(const PMString &pmstrParams)=0;<br />     virtual void GetParams(PMString &pmstrParams) = 0;<br />};<br /><br />Then, the implementation :'IWFPParamaSerial.cpp'<br /><br />>#include "VCPlugInHeaders.h"<br />// Interface includes<br />#include "IWFPParamSerial.h"<br />#include "WFPID.h"<br />// General includes:<br />#include "CPMUnknown.h"<br />#include "K2Vector.h"<br />#include "IPMStream.h"<br /><br />>class WFPParamSerial : public CPMUnknown<IWFPParamSerial><br />{<br />public:<br />     /**     Constructor. */<br />     WFPParamSerial(IPMUnknown* boss);<br />     /**     Destructor.     */<br />     ~WFPParamSerial(){};<br />     virtual void SetParams(const PMString &pmstrParams);<br />     virtual void GetParams(PMString &pmstrParams);          <br />     void ReadWrite(IPMStream* stream, ImplementationID implementation);<br />private :          <br />     PMString m_pstrParams;<br />};<br /><br />>CREATE_PERSIST_PMINTERFACE(WFPParamSerial, kWFPParamSerialImpl)<br /><br />>WFPParamSerial::WFPParamSerial(IPMUnknown* boss) : CPMUnknown<IWFPParamSerial>(boss)<br />{<br />}<br /><br />>void WFPParamSerial::SetParams(const PMString &pmstrParams)<br />{<br />     if (pmstrParams != m_pstrParams)<br />     {<br />          PreDirty();<br />          m_pstrParams = pmstrParams;<br />     }<br />}<br /><br />>void WFPParamSerial::GetParams(PMString &pmstrParams)<br />{<br />     pmstrParams = m_pstrParams;<br />}<br /><br />>void WFPParamSerial::ReadWrite(IPMStream* stream, ImplementationID implementation)<br />{<br />     m_pstrParams.ReadWrite(stream);<br />}<br /><br />Of course, in the 'WFPID.h', declarations for interface & implementation IDs :<br /><br />>DECLARE_PMID(kInterfaceIDSpace, IID_IWFPPARAMSERIAL,     kWFPPrefix + 1)<br />DECLARE_PMID(kImplementationIDSpace, kWFPParamSerialImpl,     kWFPPrefix + 6)<br /><br />In 'WFPFactory.h' :<br />>REGISTER_PMINTERFACE(kWFPParamSerialImpl, kWFPParamSerialImpl)<br /><br />And in 'WFP.fr', add it to relevant boss (<br /><br />>resource ClassDescriptionTable(kSDKDefClassDescriptionTableResourceID)<br />{{{<br />...<br />AddIn<br />     {<br />          kDocWorkspaceBoss,<br />          kInvalidClass,<br />          {<br />               IID_IWFPPARAMSERIAL, kWFPParamSerialImpl,<br />           }<br />     },<br />...<br />}}};<br /><br />Then when you have a IWorkSpace interface, you can set or get it :<br /><br />>InterfacePtr<IWorkspace> iDocWorkSpace(iDoc->GetDocWorkSpace(), UseDefaultIID());<br />if (!iDocWorkSpace) return;<br />InterfacePtr<IWFPParamSerial> iParamSerial(iDocWorkSpace, UseDefaultIID());<br />if (!iParamSerial) return;<br />PMString strParams;<br />iParamSerial->GetParams(strParams);<br /><br />HTH (and I forgot nothing :-)<br /><br />J.

  • What is Customer data integration Hub

    Hi all,
             can anyone please explain what is  Customer data integration hub and what are customer data models and gloden record process

    Hi Reddy,
    CDI- Customer Data Integration is all about integrating Customer master data using MDM.A customer data includes a lot of customer information like the name of Customer,address etc which can lead to Inaccurate and inconsistent master dtaa.
    So integrating Customer master records with MDM so as to eliminate these master data problems is the goal of CDI.
    You can refer futher additional links on CDI.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a09fdcda-e8b9-2910-29a0-e2c7ca1f008e
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10ff8340-7316-2a10-4cba-99b001cf83e2
    Customer Data Integration (CDI) at TechEd: DU150
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/e01d1085-5a51-2a10-2292-b52eb7500180
    You can also refer to all MDM IT scenarios in the below link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/56763d46-0a01-0010-058e-a0e124279607 (IT scenarios overview)
    SDN does not encourage the exchange of email ids over forums.If you have any futher queries on MDM or any realted Topics,you can kindly post your questions here and we will be there to address them.
    Hope It Helped
    Thanks & Regards
    Simona Pinto

  • MySQL functionality within Oracle SQL Developer Data Modeler

    Hi all,
    I've read a few forum posts here that lead me to believe that MySQL is not currently supported by the data modeler tool (Link #1 I got to by clicking on the Statement Of Direction link on the main page SQL Developer Data Modeler&lt;/title&gt;&lt;meta name=&quot;Title&quot; content=&quot;SQL Developer Data Modeler&quot;&g… Link #2 I got to by doing a search on the word MySQL within the forum search):
    Link 1:
    SQL Developer Data Modeler Statement of Direction
    Link 2:
    Can datamodeler be used with MySQL?
    SQL Developer (not the Data Modeler tool, but the database admin-type tool not for modeling) does support MySQL using the latest MySQL Connector J 5.1 driver but, strangely,  it doesn't seem the Data Modeler supports it, though.  Can anyone please confirm that MySQL is currently unsupported for the Data Modeler tool?  Thanks in advance.

    Hi,
    it doesn't seem the Data Modeler supports it, though.
    Data Modeler doesn't have specific support for MySQL - i.e you cannot generate DDL for MySQL. Though you can import form MySQL server using JDBC connection in standalone DM or using created MySQL connection if you are using DM inside SQL Developer.
    You can import definitions for tables(columns, PK and UK constraints, indexes, foreign keys) and views.
    Philip

  • Developing Web Services with TeleAtlas + custom data.

    A client has some TeleAltas data + own data and would like to develop some Web Services. Initially some WMS and WFS, then Geocoding + Inverse and maybe some routing. I see 2 options:
    1. Try and get the data into the format required by the Oracle OpenLS GeoCoding + Routing Functions.
    2. Design a custom data model and develop all the functions from scratch.
    I'm inclined towards the second option.
    Any feedback will be gratefully received.

    In my experience, the Oracle Spatial Geocoder is very well done, and support for it is excellent.
    I do not know how easy/difficult it will be to convert TA data into a format consumable by the Oracle geocoder.
    I do know that NAVTEQ (the company I work for) ships data out-of-the-box for the Oracle Geocoder and Router (as well as mapping and analysis).
    Dan Abugov

  • Nested routings and Custom Data

    Hi,
    I am working and testing different solutions with Nested Routings.
    For normal operations in a routing I can add Custom Data for each routing step.
    However when I add a special routing as a nested routing within my routing I can not add Custom data
    for this routing step.
    Are there any workarounds available? Am I  doing it the wrong way?
    Br,
    Johan

    Hi Johan,
    I would suppose that nested router is not treated as a router step but rather as a link to that router because there is no actual activity done at the step-link but rather at the actual steps of the nested router. So, if you can assing Custom Data to nested NC router but can't for Special router, then it is probably a bug. Otherwise, my guess is true and you can't assign Custom Data to step-link at all.
    Regards,
    Sergiy

  • TCA Data Model between 11.x and 12.x

    Hi,
    Just wanted to check whether there is significant change in Customer Data Model (TCA) between 11.5.10.2 and R12.
    I am looking whether there is any change in Table Structure/ APIs etc between these two versions.
    Any help is appreciated.
    Thanks,
    Dinesh

    Hello,
    11i TCA already equipped to handle the following entities
    1. Customer
    2. Employee
    3. Student
    However, R12 brings a change to the above by adding several new trading entities to it, viz.
    *1. Suppiler*
    * Supplier, supplier site, & supplier contact information migrated to TCA tables
    * Three new AP tables are introduced to store the supplier information, viz.
    AP_SUPPLIERS AP_SUPPLIER_SITES_ALL AP_SUPPLIER_CONTACTS
    * The old PO_VENDORS table is obsolete now, but exists as a view to provide the backward compatibility
    *2. Bank & Branches*
    * Bank is now centralized model as part of R12 architecture and Cash Management owns it
    * The three key Cash Management tables to store Bank information are:
    1. CE_BANK_ACCOUNTS - Stores bank accounts
    2. CE_BANK_ACCT_USES_ALL - Stores account uses by Operating Units & Legal Entities
    3. CE_GL_ACCOUNTS_CCID - Stores bank account use accounting data
    * The TCA party model is being used to model banks and bank branches as parties with the associated attributes of Relationships, Address, Contact and Locations
    *3. LE & Intercompany*
    Regards,
    ND

  • Custom Data Link is Lost on Saving the InCopy Document

    Hi,
    I am creating a custom data link in InCopy CS3 for the story.  I am able to successfully create the custom data link in InCopy.
    But when I save the InCopy document and re-open it then custom data link is gone and I have the normal data link.
    InCopy default behaviour is that when we save the InCopy document then it creates a normal data link.
    Does anybody have an idea what should be done to retain the custom data link and normal data link is not created.
    Thanks in Advance.
    Regards,
    Eric Won

    Thanks Dirk.
    Yes, I saw that there was some problem with the Script Provider.
    I created a new sample project in InCopy and created the custom data links. The custom data link got persisted in incx file which can be viewed by opening it in text editor. I am creating custom data link for stories.
    But when I open the InCopy document then my Script Provider gets the call back for creating the links. I created the links as shown in Custom Data Links sample but it doesn't create the link. Instead when I open the document normal data link exists for the story in InCopy.
    It seems to be that incx file is getting created correctly becuase when I try to import the incx file in InDesign then it is able to successfully create the custom data links.
    Am I missing something or doing something wrong ? any ideas ?
    I once gain thank you dirk for helping me out.
    Regards,
    Eric Won

  • EBS Data model Guide / Technical Referece Document |

    Hi All,
    I am working on Informatica/OBIEE and our source is EBS, with Finance Module.
    I am looking for a Technical Reference Guide/ Data model guide, which gives complete information on Tables involved in Finance module in EBS.
    I am not able to find in Oracle site..
    http://docs.oracle.com/cd/B40089_10/current/html/docset.html
    Can someone guide me / provide link for such document?

    ace_friends22 wrote:
    Hi All,
    I am working on Informatica/OBIEE and our source is EBS, with Finance Module.
    I am looking for a Technical Reference Guide/ Data model guide, which gives complete information on Tables involved in Finance module in EBS.
    I am not able to find in Oracle site..
    http://docs.oracle.com/cd/B40089_10/current/html/docset.html
    Can someone guide me / provide link for such document?eTRM website -- http://etrm.oracle.com
    Thanks,
    Hussein

  • Custom data link issues in sample code

    Hi all,
    I had tried to debug/run the sample of custom data link of Indesign SDK CS2. I found issue in this sample code whenever I create a package of the document which having the custom data link, at this time I got the message dialog box having the message "Cannot copy necessary linked file(s)".
    anybody know about this problem that how we can resolve this, Please let me know.

    Pete, I think this is a known issue- see http://support.adobe.com/devsup/devsup.nsf/docs/54028.htm for some workarounds.
    best wishes
    Ian

  • [CS3]  Custom Data Links for InCopy story

    Hi,
    I want to create custom data links for InCopy story.
    I am retrieving incopy story from the database and importing it on the document. I have created custom data link as shown in the samples but if I open the indesign document in InCopy I get message - no incopy story found - galley and story view are not avaiable.
    Also when I import InCopy file it is also added in Assignment Panel. I want to handle check-in/check-out on my own.
    Is there any special thing for creating InCopy Data Links ?
    Thanks in Advance.
    Anderson

    Hi Norio
    Thanks a lot for your help and your hints.
    Its my first time to solve a problem like this. And I have no idea what I have to do exactly. I mean I see the samples in the SDK, see the properties and so on. And I suppose I have to add my property to kINXScriptManagerBoss. But thats all at the moment.
    I don't know what I have to do exactly. I don't know what elements I have to add. I don't know how I can add a custom defined variable type as a property.
    I have a structure defined for my slugs:
    struct structTabFlowTableModelSlug
       int32 iUIDTableModel;   // ID des Tabellenmodells
       int32 iLinkPASHID;      // Entspricht der ID der Produktion LinkPASHID
       int32 iDtpTableID;     // Entspricht der ID der DTP Tabelle (Tabelle DtpTable)
      void reset() {
         iUIDTableModel = -1;
         iLinkPASHID = -1;
         iDtpTableID = -1;
    typedef structTabFlowTableModelSlug stTabFlowTableModelSlug;
    And I think I have to add this structure as a property. But does this work? How?
    In my plugin the slugs are added to a ITableModel interface. So I suppose I have to add the property to this scripting element. But I am not sure.
    Its a bit tricky for me to implement this.
    But anyway, thanks for your help.
    Regards
    Hans

Maybe you are looking for

  • All apps crash when accessing internet... help!

    Hi all! Need help! All apps are crashing when they try to access the internet... Oddly, I can access the internet just fine e.g. browse with firefox. For example, if I open itunes while connected to the internet it crashes, but if I turn off internet

  • Recommendations for an external hard drive I can use for both the Mac and PC

    Hello, I've used PC's for nearly most of my life, and recently Imade the leap to using a Macbook Pro (the 15" Intel i7) as I got tired of theconstant crashes.  Long story short – Ineed to have a common external hard drive that I can use with both the

  • Regarding Terms of payment at ITem level.

    Hello Gurus, I am trying to use the Terms of payment (TOP) with the filed name (ZTERM) at my item level. Can anyone suggest me if there is any way I can do this. This field is available at header level, but my vendor has subrange vendors and for ever

  • CPU Multiplier is Not Visible

    Brand New build:  i5 4670k + z97 Gaming 5.  BIOS and all drivers/utilities have been updated via Live Update 6 as of this morning.  My problem is that when I access the BIOS "Overclocking Settings", the actual CPU multiplier itself is not visible (ev

  • Trying to associate buttons with a moving moving clip

    what i have is a tween on a movie clip of a popcorn kernel on one layer and a tween on a button on another layer to follow the movie clip. i want to be able to roll over the kernel and make it "pop". i changed my over on the button to popped corn (th