Configuring the components - 7.3

MDM data processing

Version
7.3
Language
English
Product
Talend Data Fabric
Talend MDM Platform
Module
Talend MDM Server
Talend MDM Web UI
Talend Studio
Content
Data Governance > Third-party systems > MDM components > MDM data processing components
Data Quality and Preparation > Third-party systems > MDM components > MDM data processing components
Design and Development > Third-party systems > MDM components > MDM data processing components
Last publication date
2024-02-21

Procedure

  1. Double-click tMDMRestInput to view its Basic settings in the Component tab.
  2. In the Schema list, select Built-In and then click the [...] button next to Edit schema to open a dialog box in which you can define the structure of the retrieved data.
    In this example, we will extract the four elements of the product information defined in the Product data model into the four fields: id, name, description and price.
  3. Click the [+] button and add four columns of the type String.
    The data records retrieved from the MDM server need to be mapped into a correct schema. For more information, see How to set the schema correctly based on the query text when using tMDMRestInput.
  4. Click OK to validate your changes.
    The Propagate dialog box pops up. Click Yes to propagate your changes.
  5. In the URL field, enter the URL to access the MDM server through the REST API. In this example, leave it as default.
  6. In the Username and Password fields, enter the credentials to access the MDM server.
  7. In the Data Container field, enter the name of the container which holds the data you want to retrieve, Product in this example.
    Then, select Master from the Type list.
  8. Leave the check box Retrieve raw data clear since in this example we will use a query text to retrieve four fields from the Product data container.
  9. In the Query Text area, enter the query you want to include in the REST API calls for retrieving the data records of interest. The entire query text is enclosed with double quotes.
    In this example, enter the following to retrieve the product record(s) with a price larger than 500:
    "{'select':{
           'from':['Product'],
           'fields':[{'field':'Product/Id'},
    		   {'field':'Product/Name'},
    		   {'field':'Product/Description'},
    		   {'field':'Product/Price'}					
    		],
            'where': {
            'gt': [
                     {'field':'Product/Price'},
                     {'value':'500'}        
    	        ]
                      }
               }
    }"
  10. Double-click tLogRow and then select Table from the Mode list.