Can we import multiple language descriptions in Hierarchy tables of MDM

Hello Experts,
I am using MDM 7.1 SPS4 and working on the Vendor Repository standard content.
My source file of Regions table contains data in multiple languages for each region record. All the required destination language fields have been mapped properly in the standard map. Import action is set to 'Create' for new records and 'Update Mapped only fileds' for existing records. Matching criteria has Name<English> filed defined in it.
However, after importing these hierarchy records, in data manager only the Name description of English is populated while all other language descriptions for the same record is shown in Red (i.e not populated with the expected data).
Is this a limitation of MDM itself or am I missing some setting?
Thanks in advance,
Elizabeth.

Hi Elizabeth,
steps for importing  into hierarchy tables
To add new multilingual records:
1 If necessary, create the hierarchy from the current language layer Name field that contains the hierarchy information (e.g. using the Split Hierarchy command).
2Map the current language layer Name field and then Map/Add the entire set of hierarchy values.
3 Map the other language layer Name field(s). No value mapping is necessary.
4 Map the [Remote Key] field.
5 Record match using: (a) the Name field; (b) the [Remote Key] field (if the Name field was not value mapped); or (c) the combination of both.
To update the language layer of existing records:
Map the other language layer Name field(s). No value mapping is necessary.
Map the [Remote Key] field.
Record match using the [Remote Key] field and set the import action to Update (All Mapped Fields).
Just try and if you need any other info then please get back to me.
Thanks,
Sudhanshu

Similar Messages

  • V18 : can't import multiple articles with sidecar.xml ?

    Hello,
    I have successfully upgraged to v18 (tools and folio panel).
    Now, I can't import multiple articles if there's a sidecar.xml file.
    If I remove the sidecar, it works.
    Do you experiment this problem ?
    Thanks

    Here's an example of a faulty sidecar.xml
    <?xml version="1.0" encoding="UTF-8" standalone="true" ?>
    <sidecar>
              <!--
    sidecar.xml generator by Johannes Henseler
    http://projects.nordsueddesign.de/sidecarxml
    -->
              <!-- article #0 -->
              <entry>
                        <folderName>couv</folderName>
                        <articleTitle>Couverture</articleTitle>
                        <author></author>
                        <kicker></kicker>
                        <description></description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>never</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
              <!-- article #1 -->
              <entry>
                        <folderName>intro</folderName>
                        <articleTitle>Introduction</articleTitle>
                        <author></author>
                        <kicker></kicker>
                        <description></description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>never</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
              <!-- article #2 -->
              <entry>
                        <folderName>sommaire</folderName>
                        <articleTitle>Sommaire</articleTitle>
                        <author></author>
                        <kicker></kicker>
                        <description></description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>never</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
              <!-- article #3 -->
              <entry>
                        <folderName>pubTV</folderName>
                        <articleTitle>Pub:TV</articleTitle>
                        <author></author>
                        <kicker></kicker>
                        <description></description>
                        <tags></tags>
                        <isAd>false</isAd>
                        <smoothScrolling>never</smoothScrolling>
                        <isFlattenedStack>false</isFlattenedStack>
              </entry>
    </sidecar>

  • How can I import data using .dmp into the table which has more columns then in import

    I am building the history for warehouse purpose on Oracle 8i database and want to use the old import (.dmp) files (from oracle 7.3.4) to import data but the underlying table is having few more columns which are not in my old DMP file .. how can I import the data into these altered tables while using the same *.imp files .
    Any solutions ?

    That is the most obvious solution .. but think of the case when my operational database which is the source of my data is undergoing changes every quarter i.e after every 3 months there are some changes on underlying table structures which means structures of my import files will always be different after evry quarter .. you can imagine the number of temporary import structures I need to create .. can't there be a solution wherein I can write an SQL over the import file to read the data in required format ..

  • How to retrieve the data from MDM hierarchy table using MDM Java API

    Hi,
    I had a hierarchy table in MDM. This table had some column say x. I want to retrieve the values of this x column and need to show them in a drop down using MDM Java API.
    Can anyone help me to solve this?
    Regards
    Vallabhaneni

    Hi,
    Here is your code...
    TableId Hier_TId = repository_schema.getTableId(<hierarchy table id>);
    java.util.List list = new ArrayList();
    ResultDefinition Supporting_result_dfn = null;
    FieldProperties[] Hier_Field_props =rep_schema.getTableSchema(Hier_TId).getFields();
    LookupFieldProperties lookup_field = null;
    TableSchema lookupTableSchema = null;
    FieldId[] lookupFieldIDs = null;
    for (int i = 0, j = Hier_Field_props.length; i < j; i++) {
    if (Hier_Field_props<i>.isLookup()) {     
                                  lookup_field = (LookupFieldProperties) Hier_Field_props<i>;
         lookupTableSchema =repository_schema.getTableSchema(lookup_field.getLookupTableId());
                                  lookupFieldIDs = lookupTableSchema.getFieldIds();
         Supporting_result_dfn = new ResultDefinition(lookup_field.getLookupTableId());
         Supporting_result_dfn.setSelectFields(lookupFieldIDs);
         list.add(Supporting_result_dfn);
    com.sap.mdm.search.Search hier_search =new com.sap.mdm.search.Search(Hier_TId);
    ResultDefinition Hier_Resultdfn =     new ResultDefinition(Hier_TId);
    Hier_Resultdfn.setSelectFields(rep_schema.getTableSchema(Hier_TId).getDisplayFieldIds());
    ResultDefinition[] supportingResultDefinitions =
    (ResultDefinition[])list.toArray(new ResultDefinition [ list.size() ]);
    RetrieveLimitedHierTreeCommand retrieve_Hier_tree_cmd =
    new RetrieveLimitedHierTreeCommand(conn_acc);
    retrieve_Hier_tree_cmd.setResultDefinition(Hier_Resultdfn);
    retrieve_Hier_tree_cmd.setSession(Auth_User_session_cmd.getSession());
    retrieve_Hier_tree_cmd.setSearch(hier_search);
    retrieve_Hier_tree_cmd.setSupportingResultDefinitions(supportingResultDefinitions);
    try {
         retrieve_Hier_tree_cmd.execute();
    } catch (CommandException e5) {
              // TODO Auto-generated catch block
              e5.printStackTrace();
    HierNode Hier_Node = retrieve_Hier_tree_cmd.getTree();
    print(Hier_Node,1);
    //method print()
    static private void print(HierNode node, int level) {
    if (!node.isRoot()) {
         for (int i = 0, j = level; i < j; i++) {
              System.out.print("\t");
         System.out.println(node.getDisplayValue());
    HierNode[] children = node.getChildren();
    if (children != null) {
              level++;
    for (int i = 0, j = children.length; i < j; i++) {
    print(children<i>, level);
    //end method print()
    Best regards,
    Arun prabhu S
    Edited by: Arun Prabhu Sivakumar on Jul 7, 2008 12:19 PM

  • CC can't use multiple languages at the same time

    To change the language, reinstalling the program should be.
    I want to change the language without reinstalling when i want
    don't you have plans to support multiple languages?? i think it is necessary to non english-speaking world. plz

    Hi CSI,
    You can install in different languages
    http://helpx.adobe.com/creative-cloud/kb/change-installed-language.html
    Can you explain a little more about why being able to quickly change the installed language is important for you?
    -Dave

  • With Pages 5.2 how can i use multiple language types in a single document

    My Macbook Air Has the version 10.9.3
    I'm used to work with the old version of Page.
    But now I am using the new version of Pages 5.2 (1860).
    I want to know with the new version how do I use an multiple language types in a single document option.
    In the old  version of Pages I was using  Inspector -> Text -> "More" tab -> Language: British Inglese.
    In the new Pages 5.2 I do not know how to do it
    Could you help me?
    melo

    It's not possible to tag text with multiple languages in Pages 5.  Go back to Pages 4, which should still be in you iWork folder.
    For the whole doc in Pages 5, use Edit > Spellling and Grammar > Show Spelling and Grammar.

  • How can I import multiple PDF pages into ID?

    I am putting together a catalog which consists of over 400 pages. We had the products on our website exported into a PDF format and I need to add a header and footer to each page via a master page in ID. I don't need to edit the actual PDF but I need to create a layer on top of what was exported. How can I import the 400 pages to be independent of each other without manually placing them?

    Depending upon what you want in the header or footer, you do it in
    Acrobat...Document>Header and Footer>Add.
    There's a multipage PDF place script that ships with ID...open the
    scripts panel and it should be there.
    Bob

  • Can't get multiple languages to work in mail

    I used English and Dutch, and sometimes German as language on my Mac. Took me a while but I finally figured out how to use Pages with different language and subsequent speller check.
    I'm still struggling with the same in mails (gmails). I have my three input languages defined, I can toggle between the three, but when I'm typing an email no matter what language I choose, it still keeps the system language (in my case English).
    i must be overlooking something obvious, but what?
    Jeroen

    Unfortunately, this is not a proper solution:
    For example, in my MacOS (like in my iPad) I have the following languages preferences (by order):
    English
    Spanish
    Català (the language from Catalunya)
    With my Ipad, I can switch the 3 languages (while typing in Mail) easily just pushing the key on the left of the space bar.
    However, in any of my Mac computers I don't have this choice. Moreover, if I try the method mentioned above (Edit>Spelling and Grammar>Show Spelling and Grammar) I can not choose Catala (no matter it is in third position in System Preferences>Language & Text) just a standard list of main languages.
    I must agree with so many observers sayinng that "current" Apple company shows a lack of interest for MacOS and Mac computers. Too focussed on mobile/iPad benefits and stock market?.

  • HT2486 how can I import multiple address books into one. . . . ?

    I have two laptops with different Address Books, I want to merge them into one on a new macbook pro. I can only import one archive file, otherwise it will overwrite the other one. . . . or so it says. . . suggestions?

    Export the one you want to move to a vCard file (select all contacts) then import to the one you want it to be in.

  • Can I import multiple folders at once?

    I'm pretty sure that Aperture won't support what I want to do...but I thought I'd ask anyway...
    I'm converting to Aperture from Photoshop Elements.  I've got all my photos arranged nicely in the following structure:
    \Photo-directory
      \year
        \month
          \mm-dd-yy some descriptive name for the shoot
    When I try to import into Aperture, I have to navigate all the way to "...\mm-dd-yy some descriptive name for shoot" folder.  Aperture is smart enough to figure out that I want to store these images in a project called "mm-dd-yy some descriptive name..."
    But what I really want to do is this: tell Aperture "Start at /Photo-directory (or even /Photo-directory/year) and import all the images in all the sub-folders...and create projects using the lowest-level folder name as the project name."
    Any way to do this?  A "batch import folders" feature like this would be really sweet...

    You can import whole Finder trees via "File→Import Folders as Projects".  Specify whether you want to end up with Folders/Projects, or Projects/Albums.  (I always use Folders/Projects.)
    There are many things to consider prior to importing your images and setting up your Library.  Strongly suggest reading the User Manual chapter (click for link) --
    Importing Images
    especially the section
    Importing Folders of Images from the Finder
    You are going to want to fully understand the difference between a Managed Master and a Referenced Master before making the switch to Aperture.  Additionally, get ready for the discomfort of moving from a file-manager approach (using the Finder) to an image-manager (using Aperture).
    In Aperture, you organize your images -- but your images don't exist as image-format files usable by other programs until you export them.
    Message was edited by: Kirby Krieger

  • HT4489 can i import multiple contacts

    I want to import contacts from Outllok into my icloud contacts

    By clicking on the cogwheel icon at bottom left in the Contacts page at htttp://icloud.com you can import a vCard, and this can be either a single contact or multiple contacts.

  • How can I export multiple language tracks?

    I have a MOV video with two language tracks, English and German. I want to export the file to another format (m4v) or import to iTunes.
    Whenever I export, I lose one of the audio tracks. How can I export both Audio Tracks?
    The video is H.264, 688 x 416, Millions
    BOTH audio tracks are AAC, Stereo (L, R) 48.000 kHz
    In the properties window, I selected (enabled) both audio tracks before exporting. And, in the "other settings" tab of properties, I set the language for each track, and I listed the "alternate" as the other language track.
    Also when I imported the MOV into iMovie it only had the English track.
    Many thanks,
    MyMacForMore

    Whenever I export, I lose one of the audio tracks. How can I export both Audio Tracks?
    Have not personally tried this, but you might try the Free HandBrake app. I have loaded a file with one active and one inactive audio track and found that HandBrake does see and allow you to select one, the other, or both tracks for processing. Did not actually bother to convert the tracks since they were already AAC and could be added individually to an MOV file using QT 7 "Pro" software.
    Also when I imported the MOV into iMovie it only had the English track.
    I believe iMovie "Finder" level import only allows one audio and/or one video track per file. You can, of course, extract the non-included track as an audio file, and add it to an iMovie project separately. However, be advised, that the audio tracks will be flattened/dowmixed to a single track during export which may not be what you want.

  • How can i use multiple languages ?

    I want to add language options on my web page.
    I duplicate a page, wanting to translate it.
    On the menu bar, the name of the new page appears.
    How can I make it unvisible ?

    This iWebFAQ.org page may be of interest to you....
    http://iwebfaq.org/site/iWeb_Multilingual_sites.html

  • How can I import multiple iphoto libraries into Photos beta

    I have successfully imported a single iPhoto Library into the Photos Beta app.  However I have several other iPhoto libraries that I would like to import into the Photos library.  Think of is as merging everything into one now that there's iCloud backup.
    I started with iPhoto back in 2005 and have created a separate library every three years ever since.  Each one is quite large, ~40 gigs.
    What is the best means to import additional libraries into my new Photos library.  Unfortunately the File import option on Photos does not allow for a selection of iPhoto Library file type.
    Thanks,
    Brian

    Merge all iPhoto Libraries into one before migrating them to the new Photos.app.
    You cannot add additional libraries to a Photos library, only additional photos.  Or have several Photos libraries, but only one of them can sync with iCloud.
    To merge your iPhoto Libraries into one, use either Aperture, if you have it  (see:  Aperture 3.3: How to use Aperture to merge iPhoto libraries), or the paid version of iPhoto Library Manager:  Download it here:  iPhoto Library Manager

  • Can we import multiple pdf's at a time in the repository through infoview.

    Hi ,
    As you know through infoview we can import pdf, word or excel file which are in our local system through infoview.
    Steps:
    In infoview --> New -->document from local computer --> pdf
    We browse and select them into infoview.
    Is there any possibility if I have 20 pdf's in my desltop to import it at one go.
    Any help will be really appreciated.

    use the publishin wizard
    select "Add Folders"
    and select "Acrobat Reader (PDF)"
    good luck

Maybe you are looking for

  • Installing Windows 8.1 on Early 2011 MacBook Pro

    I am running OS X Yosemite (10.10.1); 2.2 GHz Intel Core i7 Processor; 8 GB Memory; Intel HD Graphics 3000 512 MB; 500 GB Flash Storage Here is what I have done so far: 1. I downloaded a 64-bit Windows 8.1 file from my university's software website.

  • Network Load Balancing for AFP Sharing

    Dear all, Anyone can kindly teach me how can I configure network load balancing with 2 xserve? Currently I success to bond 6 ethernet port with a virtual IP in a single machine and I have a link aggregation setup in my switch. It works fine. How to c

  • Cannot stop animaiton in order to put a button

    Hi i cannot stop my animaiton in order for me to put a start button to make the animaitoin start when the start button is clicked on. I put the code stop(); into one of the begining frames but it still played . I am using action script 3 on CS4 This

  • Black Fri PS CC & LR5 deal misleading : only implies you need to be CS3 or above owner after order

    I was on the Adobe website, when I saw this Black Friday deal for Photoshop CC and Lightroom 5. Upon clicking Join now, I got to the following page : From this page, I then read both the FAQ and the terms. The FAQ said the following : And the terms s

  • Query Results as a graph

    This is kind of a weird question but what I am trying to do is automate a query and display the output as a bar graph or a chart. Is there some sort of tool i can use to do this? I know how to automate the query but i dont know how to automate the gr