Replicate Non-standard lookup data from R3 to MDM

Hi MDM Experts,
I am having a scenario like i want to replicate the reference data(Lookup table data) from R3 System to MDM System.
For that i can use the transaction "MDMGX" but in this we can replicate for standard lookup table data which has been shipped by SAP in R3 on the basis of object types like article, product, catalog etc....
I want to replicate the look up table data which is not standard one.
I just want to know that what all the possible ways so that I can customize the same and would be able to replicate the lookup table data from R3 to MDM.
Any help would be highly appriciated.
Thanks,
Saurabh..

Hi Deepankar,
I'm sorry to correct you, but MDMGX does not send IDocs to MDM. MDMGX provides the customizing data in XML format. You can configure MDMGX either to send the XMLs directly to MDM's port folders via FTP or to download those files locally on your PC. MDMGX is only capable to extract customizing data for master data objects but not the object itsself.
The output of MDM_CLNT_EXTR depends on the system it is running in. R/3 (ERP) systems use IDocs for message distribution via the systems ALE layer. These can be DEMDM, CREMDM, MATMAS, and so on if you use the standard SAP content, or any other customer defined IDoc type. These IDocs have usually an XML format, but they are not really XML documents. The transformation from IDoc to XML usually happens on XI.
It' a bit different if you extract data from CRM or SRM systems. Those systems use an integrated Proxy implementation for message distribution. The messages sent to XI (or MDM) are already real XMLs.
Additionally pleas enote that MDM_CLNT_EXTR is intended to be used for the extraction of Master Data Objects and not the related customizing data!
BR Michael

Similar Messages

  • Price Information data from SRm to MDM

    Hello,
    I m working on SRM-MDM Catalog 2 scenario.
    I have imported lookup table data in MDM using MDMGX transaction.
    But i couldnt get data for Price Lookup Qualified Table.
    Can anybody please tell me how should i send Price Information data from SRM?
    Thanks,
    Maheshwari

    Hi,
    By MDMGX, you replicate only the lookup table data.if you want to see which kind of look uptable data it replicate, you can refer the FS Guide/Config Guide of SRM-MDM.
    when you replicate the main table data from SRm to MDM via XI then you will get all those info related to price in the Qualified lookup table.
    Hope this will help you.
    TNR,
    saurabh...

  • Making non-standard size pdfs from Microsoft Word 2003 on pc

    I have Acrobat 8 Professional (pc, Windows XP op system), and want to know how to make a pdf from Microsoft Word (2003) where the dimensions of my document remain as they are, a non-standard size, such as 5.5" x 8.5". All the choices of "paper size" are standard only, and if I check "Custom" and type in the non-standard dimensions, it doesn't work. In other programs, such as InDesign, I can make a pdf of any document size I want with no problems. Does anyone know how to make this work for Word on pc?

    You can create a custom page size for Acrobat.
    In Word:
    File > Print (choose AdobePDF) > Properties.
    On the Adobe PDF Document Properties tab, choose Add next to Adobe PDF Page Size.
    Type in a name for your new custom page size and type in your dimensions.
    Click Add/Modify to close that window, then select your newly created paper size from the drop down.
    Click Ok to close that window
    Click OK to print
    For future printing, you would not have to redefine the page, just choose it from the dropdown.

  • Finding Non Standard Service Accounts from all AD Computers / Servers

    Hi Guys,
    I am trying to get the list of all Service Accounts, which are non-standard from an AD domain network using PowerShell. The code is provided below. But it is not working (Through individual cmdlet through console, working fine.) Tried without filtering the
    non-standard accounts, but that also gives no  output in HTML format. The HTML output is of no use.
    $Report= "c:\TEMP\Audit_Report.html"
    $Computers= Get-ADComputer -Filter 'Enabled -eq $True' | Select Name
    # Set the html formatting for the report
    $HTML=@"
    <title>Non-Standard Service Accounts</title>
    <style>
    BODY{background-color :#FFFFF}
    TABLE{Border-width:thin;border-style: solid;border-color:Black;border-collapse: collapse;}
    TH{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: ThreeDShadow}
    TD{border-width: 1px;padding: 2px;border-style: solid;border-color: black;background-color: Transparent}
    </style>
    # Processes each computer in the list
    ForEach ($Computer in $Computers)
    # Query the each computer its services
    Get-WmiObject -ComputerName $Computer -class Win32_Service -ErrorAction SilentlyContinue |
    # Filters out the standard service accounts
    #Where-Object -FilterScript {$_.StartName -ne "LocalSystem"} |
    #Where-Object -FilterScript {$_.StartName -ne "NT AUTHORITY\NetworkService"} |
    #Where-Object -FilterScript {$_.StartName -ne "NT AUTHORITY\LocalService"} |
    # Selects content to display in the report
    Select-Object -Property StartName,Name,DisplayName |
    # Converts the output to html format and writes it to a file
    ConvertTo-Html -Property StartName,Name,DisplayName -head $HTML -body "<H2>Non-Standard Service Accounts on '$Computer'</H2>" | Out-File $Report -Append
    #Launches the report for viewing
    Invoke-Item $Report
    The HTML Output contains only :
    Non-Standard Service Accounts on '@{Name=CAP1AD-PDC}'
    Non-Standard Service Accounts on '@{Name=CAP-CLIENTXP}'
    Non-Standard Service Accounts on '@{Name=CAPCLIENTWIN8}'
    Non-Standard Service Accounts on '@{Name=CAP1AD-DB}'
    Non-Standard Service Accounts on '@{Name=BSMLAPI}'
    Requesting your valuable support.
    Thanks in advance
    Bedanta
    Thanks & Regards Bedanta S Mishra

    This is what I get when I run MY code: (I lost the format on paste but you can see the line for the title with computername.
    Non-Standard Service Accounts on 'omega'
    StartName
    Name
    DisplayName
    LocalSystem
    AdobeActiveFileMonitor10.0
    Adobe Active File Monitor V10
    LocalSystem
    AdobeARMservice
    Adobe Acrobat Update Service
    LocalSystem
    AdobeFlashPlayerUpdateSvc
    Adobe Flash Player Update Service
    localSystem
    AeLookupSvc
    Application Experience
    NT AUTHORITY\LocalService
    ALG
    Application Layer Gateway Service
    LocalSystem
    AMD External Events Utility
    AMD External Events Utility
    NT Authority\LocalService
    AppIDSvc
    Application Identity
    LocalSystem
    Appinfo
    Application Information
    LocalSystem
    AppMgmt
    Application Management
    NT AUTHORITY\NetworkService
    aspnet_state
    ASP.NET State Service
    Non-Standard Service Accounts on 'omega'
    StartName
    Name
    DisplayName
    LocalSystem
    AdobeActiveFileMonitor10.0
    Adobe Active File Monitor V10
    LocalSystem
    AdobeARMservice
    Adobe Acrobat Update Service
    LocalSystem
    AdobeFlashPlayerUpdateSvc
    Adobe Flash Player Update Service
    localSystem
    AeLookupSvc
    Application Experience
    NT AUTHORITY\LocalService
    ALG
    Application Layer Gateway Service
    LocalSystem
    AMD External Events Utility
    AMD External Events Utility
    NT Authority\LocalService
    AppIDSvc
    Application Identity
    ¯\_(ツ)_/¯

  • Can I use Non-standard XSD Data Types in my XSD; if so how?

    Please help if you can, this is a complex question, so bear with me.
    Also note that I am in Livecycle 8.2 ES (not ES2 or higher).
    I am working on creating XSD schemas to map to form objects.
    I have created one master schema document that is wired into multiple forms, and I have one separate schema for reusable form objects, that I refer to as a "common node".
    All of my individual form schemas are brought together in this one Master Schema via the use of include statements.
    EXAMPLE: This is like my Master Schema
    <?xml version="1.0" encoding="UTF-8"?>
    <!--W3C Schema written by Benjamin P. Lyons - Twin Technologies July 2010-->
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified" >
    <xs:include schemaLocation="./commonElementsNode.xsd" />
    <xs:include schemaLocation="./form1111.xsd" />
    <xs:include schemaLocation="./form2222.xsd" />
    <xs:include schemaLocation="./form3333.xsd" />
    <xs:element name="form">
    <xs:complexType>
      <xs:sequence>
       <xs:element ref="commonElementsNode" />
       <xs:element ref="form1111" />
       <xs:element ref="form2222" />
       <xs:element ref="form3333" />
      </xs:sequence>
    </xs:complexType>
    </xs:element>
    </xs:schema>
    This works fine.
    I can load this up in Designer in the Data View and everything appears in the Data View hierarchy correctly, with "form" as the top node.
    And as long as I use standard "xs:" data types - everything works great.  So if I go into LiveCycle Designer and I go to File --> Form Properties --> Preview --> Generate Preview Data and generate dummy XML data - it respects my XSD conventions.
    Now here is where the problem arises:
    In these schemas, I need to define the data types.
    The client I am working for needs me to use their data types.
    These data types are not standard xs: data types, like "xs:string" or "xs:date".
    Rather, the data types are ones that have been defined in other schemas and reserved to a namespace.
    For instance, rather than use xs:date I need to use something like:  "myns:DateType"
    This "myns:DateType" is defined as:
    <xs:complexType name="DateType">
      <xs:simpleContent>
       <xs:extension base="xs:date">
        <xs:attribute name="format" type="xs:string" use="optional">
         <xs:annotation>
          <xs:documentation xml:lang="en">
           <mydoc:Name>Date Format Text</mydoc:Name>
           <mydoc:Definition>The format of the date content</mydoc:Definition>
           <mydoc:PrimitiveType>string</mydoc:PrimitiveType>
          </xs:documentation>
         </xs:annotation>
        </xs:attribute>
       </xs:extension>
      </xs:simpleContent>
    </xs:complexType>
    Note that I have redacted this data type slightly and changed the namespace to protect the anonymity of my client, but we can assume that their data type is valid and currently in use with other systems.
    It conforms to W3 standards.
    Note also how this type is an enumeration of the base type "xs:date".
    This is defined in a schema called something like "MyCoreTypes.xsd"
    There is a namespace reservation in this file that looks something like this:
    <xs:schema xmlns:xs="http://www.w3.org/2001/XMLSchema" elementFormDefault="qualified" attributeFormDefault="unqualified"
    xmlns:myns="http://clinetname.com/schemas/mycoretypes" >
    So there is a name space reservation there.
    In my aforementioned "Master Schema" file, I have an include statement that looks like this:
    <xs:include namespace="http://clinetname.com/schemas/mycoretypes" schemaLocation="./MyCoreTypes.xsd" />
    (let's assume that the schema is in the same folder, as the Master Schema, so we can use the "./" relative path.)
    Now the problems is that in all my forms, where I have a myns:DateType (e.g.:  in form1111, a "Date of Birth" element that looks like this: <xs:element name="OwnerBirthDt" type="myns:DateType"/> ) the XSD is not respected when the XML dummy data is generated in LiveCycle Designer implying that the XSD's data types are not being recognized properly.
    Has anyone had this problem before?
    Is there a solution?
    Is it even possible to use these kind of include or import references in LiveCycle to define a data type other that the standard "xs:" data types?
    Please let me know - it would be greatly appreciated.
    I am more than willing to clarify the question further if others are willing to help.
    Thanks -
    Ben Lyons

    prf.kishorekumar wrote:
    i came here with a hope that I would definitely get some help.
    pls.. some one reply1) You got some help. No where do I see thanks or acknowledgment for the information given.
    2) Please remember that people on the forum help others voluntarily, it's not their job.
    3) Google can often help you here if the forum can't. Using Google I found this interesting link:
    http://today.java.net/pub/a/today/2004/05/24/html-pt1.html
    It discusses the Swing HTML EditorKit as well as some other free HTML renderers.
    Edited by: petes1234 on Oct 24, 2007 7:29 PM

  • Extraction of Business Partner data from CRM to MDM

    Does MDM provide standard extractors that can be installed in CRM so that BP data can be extracted and sent to XI via IDOC.
    If it does where can I find this information ?

    have a look at the MDM IT scenario Configuration Guide: https://websmp110.sap-ag.de/~sapidb/011000358700004656452006E
    This document describes how you setup bupa data extraction from CRM to MDM, which is actually done via Proxies and not via IDocs.
    Regards
    Christine

  • Contract data from ECC to MDM

    HI all,
    We have standard setup to push Contract data to catalog from ECC using MECCM transaction from ECC... and Via PI we use the standard way to FTP the file... we use standard mapping interface in PI - CatalogueUpdateNotification_Out... which in turn pushes the Data from PI to FTP server. Where the MDM picks it and upload it.
    Everything works fine.... But I need to understand how the MDM recogize the File and how the PORT and XML schemas upload the FIle into MDM database???
    Need to Identify whether it can be modified???
    regards,
    Prabhu

    Hi Prabhu,
    You can upload the xsd from PI into MDM. To get the schema go to your message type and click on xsd tab and copy and paste in notepad and save as .xsd and upload. Else you need to create the schema in external tools like altova xml spy or stylus studio etc.
    There is option in MDM whether to load that file from the port automatically or manually. If automatic it will load immediate else you need to run manaully the file.
    Need to Identify whether it can be modified???
    I did not understand this. Do you mean to change something in the file once written from PI. If yes then try to go to MDM console and open the port and load it manually. So the file will be sitting there and you can modify and upload manually through Import Manager. But this is not advisable in production.
    If PI is sending a csv or tab delimited file then you dont need to have a schme for that. You can load it manually.
    Regards,
    ---Satish

  • Using xsgl:insert-request to insert non-English character data from HTML form

    I tried to insert a text written in French and pasted into an HTML form into my database following the recipe from the XSQL release notes.
    The table:
    create table content_object (
    id number(9) constraint pk_content_object primary key,
    author number(9),
    title varchar2(256),
    abstract varchar2(1024),
    object_type_id number(9),
    content_meat clob,
    XML file the form is posted to:
    <?xml version="1.0"?>
    <xsql:insert-request connection="demo"
    xmlns:xsql="urn:oracle-xsql"
    table="content_object"
    transform="article_form_to_content_object.xsl"/>
    article_form_to_content_object.xsl:
    <?xml version = '1.0'?>
    <ROWSET xmlns:xsl="http://www.w3.org/1999/XSL/Transform" xsl:version="1.0">
    <xsl:for-each select="request/parameters">
    <ROW>
    <TITLE><xsl:value-of select="title_field"/></TITLE>
    <ABSTRACT><xsl:value-of select="abstract_field"/></ABSTRACT>
    <CONTENT_MEAT><xsl:value-of select="content_field"/></CONTENT_MEAT>
    </ROW>
    </xsl:for-each>
    </ROWSET>
    The result was:
    <ROW num="2">
    <ID>6</ID>
    <TITLE>Le go</TITLE>
    <ABSTRACT>Vin bouchonn</ABSTRACT>
    <CONTENT_MEAT>Des conditions de conservation au tant d</CONTENT_MEAT>
    </ROW>
    All strings were cropped at the point where the first accented character appeared.
    Any idea why this is happening? With English texts it works just fine.
    Maciej

    Another user hit this problem this week. I debugged it and posted the reply in the discussion thread:
    http://technet.oracle.com:89/ubb/Forum11/HTML/002799.html
    It's a JDK bug in character set conversion that has a simple workaround, just indicate the ISO-8859-1 encoding on your XSQL page. See the end of this other thread for details.

  • Reading non-standard variable types from file

    Hi,
    I'm currently on a programming course, and I need some help with an excercise.
    The excercise is about adding save, load and undo features to an Infocom style text adventure. The save file must contain three variables: The location of the player (Area), the items the player had (ArrayList<Item>) and the number of passed turns (int.)
    Is it possible to write to & read from file with these type of variables? Or do I have to convert them to Area to String (saving) and from String to Area (loading)?
    Thanks for the help in advance.

    You should probably take a look at Java Serialization (google on that)
    Kaj

  • Non standard format images from the iPhoto print service

    Can anyone tell me how to get the iPhoto print service to leave my images alone? They default to filling their 10 x 8 or 7 x 5 paper sizes. Nowhere on the order form do they tell you they're going to do this and I can't find anywhere to tell them not to.
    They also supplied the prints in neat card wallets with "Do not bend" in nice red boxes printed on them. These were then dispatched in a plain white envelope with no such notices on it. Not surprisingly the prints arrived bent!

    Welcome to the Apple Discussions. When you click on the Buy button the available print sizes that Apple provides are displayed and you have to fill in how many of each you want. There is no custom size available, at least here in the states. What size(s) did you select in the order window?
    Click to view full size
    Didn't you get a similar window over there?
    TIP: For insurance against the iPhoto database corruption that many users have experienced I recommend making a backup copy of the Library6.iPhoto (iPhoto.Library for iPhoto 5 and earlier versions) database file and keep it current. If problems crop up where iPhoto suddenly can't see any photos or thinks there are no photos in the library, replacing the working Library6.iPhoto file with the backup will often get the library back. By keeping it current I mean backup after each import and/or any serious editing or work on books, slideshows, calendars, cards, etc. That insures that if a problem pops up and you do need to replace the database file, you'll retain all those efforts. It doesn't take long to make the backup and it's good insurance.
    I've created an Automator workflow application (requires Tiger or later), iPhoto dB File Backup, that will copy the selected Library6.iPhoto file from your iPhoto Library folder to the Pictures folder, replacing any previous version of it. There are versions that are compatible with iPhoto 5, 6, 7 and 8 libraries and Tiger and Leopard. Just put the application in the Dock and click on it whenever you want to backup the dB file. iPhoto does not have to be closed to run the application, just idle. You can download it at Toad's Cellar. Be sure to read the Read Me pdf file.
    NOTE: The new rebuild option in iPhoto 09 (v. 8.0.2), Rebuild the iPhoto Library Database from automatic backup" makes this tip obsolete.

  • Sync non standard customer fields cProjects to PS by extending BAPI_BUS2054

    Hello,
    I am using the hierarchical accouting via PS and would like to synchronise some non standard customer fields from cProjects to PS. The fields for synchronisation are definded in structure BAPI_BUS2054_DETAIL. This is used in BADI DPR_FIN_GECCO_ATTR. There I am filling the ct_attributes to transfer the data.
    My question is if it is possible to extend this structure in order to transfer own fields to PS?
    Thx, Vanessa

    thanks

  • What non-standard JVM options are common across vendors...

    Hi all,
    As the name explains, non-standard JVM options (java -X) are exactly that, non-standard. So from what I understand these can be different by vendor, by release, by platform, or any combination of the above.
    What I'm trying to figure out is what's common between all the different implementations, if any. For example, are all of Sun's releases (for all platform, for all releases) have the same options? Or do they change by release, i.e. 1.3 to 1.4 to 1.5? Or do they change by platform (Win, Linux, etc).
    Is there knowledge about this out there? So, far I haven't been able to find any info about commonality.
    :-D

    You could simplify the question: what are the standard non-standard options?

  • Exporting data from  R/3 system as IDOCs

    As I am working with MDM and not familar with R/3 very much, is there any manual or  baisic guidlines how to export master data as IDOCs from R/3 ?
    Thank you in advance

    Hi Vytas,
    to send the data from R3 system to MDM System, you need to follow procedure as mentioned below:
    1. you can use the transaction "MDMGX" in R3 system to extract the refrence data to the mdm system via FTP Server.generally this transaction  is used to extract the lookup tables data into the repository.
    for using this, you  can use the option there in transaction MDMGX as "Define repositories and FTP Server" and configure all the required details and you have to install the ftp server on MDM server.then to extract the data, there is a option as "Start Extraction" and your data will be extracted from R3 to MDM inbound port via FTP Server.
    for further details about MDMGX, you can refer SAP Note No-964991.
    2. to extract the main table data from R3 to MDM, you can use the transaction "MDM_CLNT_EXTR".
    for detail info about this transaction, just refer the SAP Note No.-836985, 1035601, 844558.
    both transaction will be used for extracting the data from R3 to MDM as per your business requirement.
    I hope, this will help you.
    any further info, just let me know.
    Regards,
    Saurabh...
    Reward with points if found helpful.

  • Non-standard Remote Desktop port - Outbound

    I am having problems using non-standard RDP  port from  the local network to the remote terminal server accepting requests only on port 32123  at the Internet.
    Example:  69.159.24.1:32123  
    Eveything working fine if i use  the direct connection to the internet OR the standard RDP port  (3389) through the Lynksys.
    When I try to go through the Linksys WRT300N v1.1 (latest firmware) client just times out.
    Any ideas ?

    Try to forward any specific range of the ports ..... & also check that Remote desktop setting is enabled or not ....

  • Uploading data from non sap system to sap system

    hi to all experts,
    my requirement is to upload data into the sap system from non sap system . the data is in  a flat file ,but the problem is that  in the flat file all the field lengths and fields are not in order or same as sap system. How to upload the data into sap system ....

    hi,
    the data is in a flat file,but the problem is that in the flat file all the field lengths and fields are not in order or same as sap system.
    If the data is in excel sheet use this FM.
    CALL FUNCTION 'ALSM_EXCEL_TO_INTERNAL_TABLE'
        EXPORTING
          FILENAME                      = P_FILE
          I_BEGIN_COL                   = 1
          I_BEGIN_ROW                   = 1
          I_END_COL                     = 17
          I_END_ROW                     = 3000
        TABLES
          INTERN                        = itab
    EXCEPTIONS
      INCONSISTENT_PARAMETERS       = 1
      UPLOAD_OLE                    = 2
      OTHERS                        = 3
    It will read the data from excel sheet column wise and then store it in ITAB. you can change the order after reading the file.
    In case of Text file use FM  GUI_UPLOAD.
    You can change the order of the fileds after reading it from file, but the length and all you have to make compatible to SAP standard fields.
    Regards,
    Sachin

Maybe you are looking for

  • Automated GUI testing

    Hey, I'm developing an application using UI5 and I'm currently looking for a tool that allows me to record automated GUI test cases. Usually we are using HP QuickTest for that purpose but it seems not to support UI5. Can you recommend me any Software

  • PKCS#11 Example ???

    Hello, I am new in Java security. How can I use the keystore that stores in a smartcard to sign/verify data ? Is there any simple but complete example ?? Best regards, Eric

  • Help Req for Rounding Rule,

    Hi All, Can some one tell me what r the steps to be created in rounding rule of Absence Quota. Regards, Vinod.

  • My screen won't tilt

    Hello Everyone! I bought my ipod touch 4th gen last year and about a few months ago, the screen on my ipod touch won't flip as in when you tilt the device, the screen won't tilt as well. It's not a major issue however, I cannot play a few apps such a

  • Firefox is BEHIND the windows 7 taskbar.

    After opening up firefox, instead of leveling above the windows 7 taskbar at the bottom of the screen, it appears behind it. Disallowing me to access certain links on web pages at the bottom of its page. Like the chat window in Facebook, i can no lon