WDK import component doesnt show authors,keywords

prasan_13
edited February 9, 2015 in Documentum #1

We are trying to display certain attributes when user import's a custom document in our WDK client. We have done the display configuration in composer which seem to work perfectly when we we check the properties of the document. But the attributes displayed on the import screen don't match. Whats more weird is that the import screen shows all the custom attributes we added in the composer display configuration but not attributes like authors, keywords which are part of the dm_document. Has anyone seen this before and how did u manage to get around it?

Thanks

Tagged:

Comments

  • DubrovskyD
    edited January 23, 2015 #2

    Try to check import attributelist config. Your attributes are could be in ignored list there:

      <attributelist id="import" extends="attributes:webcomponent/config/library/attributes_docbaseattributelist.xml">

             <data_dictionary_population>

                <enable>true</enable>

                <ddscopes>

                   <ddscope name="application">webtop</ddscope>

                </ddscopes>

                <ignore_attributes>

                   <attribute name="r_object_id"/>

                   <attribute name="object_name"/>

                   <attribute name="owner_name"/>

                   <attribute name="r_creation_date"/>

                   <attribute name="r_creator_name"/>

                   <attribute name="r_modify_date"/>

                   <attribute name="r_modifier"/>

                   <attribute name="show_topic"/>

                </ignore_attributes>

    ...

  • prasan_13
    edited February 9, 2015 #3

    Yup. Looks like that was the issue. Thanks