Clarity

 View Only
  • 1.  Xogging Views only From a SubObject

    Posted Jan 30, 2012 10:53 AM
    I am having difficulties Xogging the views from a subobject of an Idea. I am trying to xog subobject views from our development environment into our testing environment. The xml file generated from development was monstrous in size. When I tried to xog it into the test environment, I got an error saying that the description had no name. I don't want the parent object info. We are on Clarity 12.0 with an Oracle DB.

    Any tips would be great. Thank you,


  • 2.  RE: Xogging Views only From a SubObject

    Posted Jan 30, 2012 11:46 AM
    Edit the "monstrous" XML file in your favourite XML editor.... remove everything that is not a sub-object view?


  • 3.  RE: Xogging Views only From a SubObject
    Best Answer

    Posted Feb 02, 2012 03:49 PM
    Thank you. I ended up getting it to work how I needed it to, and avoiding the monstrous xml file. Here's what I used to read it from our development environment....

    <?xml version="1.0" encoding="UTF-8"?>
    <NikuDataBus xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="../xsd/nikuxog_read.xsd">
    <Header version="8.0" action="read" objectType="contentPack" externalSource="NIKU">
    <!-- the contentType is used to determine which filter goes where -->
    <args contentType="job_definition" name="order_by_1" value="code"/>
    <args contentType="menu" name="order_by_1" value="code"/>
    <args contentType="view" name="order_by_1" value="code"/>
    <args contentType="process" name="order_by_1" value="code"/>
    <args contentType="object" name="order_by_1" value="code"/>
    <args name="no_dependencies" value="true"/>
    </Header>
    <ViewQuery>
    <Filter name="object_code" criteria="EQUALS">qd_ideastatus</Filter>
    </ViewQuery>
    </NikuDataBus

    This delivered the views to the sub Object, perfectly.


  • 4.  RE: Xogging Views only From a SubObject

     
    Posted Feb 10, 2012 03:29 PM
    Thanks for letting everyone know you were able to resolve!