Clarity

 View Only
  • 1.  Copy Team from Idea to Idea Creation

    Posted Jun 23, 2020 01:10 PM
    Hello Everyone, 

    I have an Idea and associated the team members. I consider this as a template that has the team members. When I create the new idea, I need to copy of the team members that I had the Idea created as a template. 

    I tried Xogging out the idea that I created as a base but it is kind of confusing which one that I need to take. 

    Any thoughts ? 


  • 2.  RE: Copy Team from Idea to Idea Creation
    Best Answer

    Broadcom Employee
    Posted Jun 29, 2020 07:59 AM
    Hi Aruna,
    You could use the ideas_read.xml file to read your idea template out:

    <?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="idea" externalSource="NIKU">
    <args name="documentLocation" value="D:\niku/xog/test/documentXogLocation"/>
    <args name="include_resources" value="true"/>
    <args name="include_tasks" value="true"/>
    <args name="include_allocations" value="true"/>
    </Header>
    <Query>
    <Filter name="objectID" criteria="EQUALS">admin</Filter>
    </Query>
    </NikuDataBus>

    You could then look at the resource, task and allocation tags on that idea.
    Build a similar xml file for the idea you want to update and XOG the data in.
    Regards