Clarity

  • 1.  How to get XOG of resource allocation, task ETC for a project

    Posted Feb 07, 2013 07:45 AM
    Hi All,

    I'm trying to update following project attributes through XOG:
    - Allocations for each resource
    - ETC for each task

    Please see the attached image for the above attributes.

    I could not find these attributes in the project XOG.
    Please help me to find these attributes in XOG.


  • 2.  RE: How to get XOG of resource allocation, task ETC for a project

     
    Posted Feb 12, 2013 01:42 PM
    Hi All,

    Any ideas here for this one?

    Thanks!
    Chris


  • 3.  RE: How to get XOG of resource allocation, task ETC for a project

    Posted Feb 14, 2013 04:00 AM

    Chris_Hackett wrote:

    Any ideas here for this one?
    This was another "duplicated thread" that happened when the XOG board vanished.

    The other discussion is here ; How to get XOG of resource allocation, task ETC for a project


  • 4.  RE: How to get XOG of resource allocation, task ETC for a project
    Best Answer

    Posted Feb 14, 2013 03:25 AM
    Have you checked - "prj_projects_alloc_act_etc_read.xml" ?

    <?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="7.5" action="read" objectType="project" externalSource="NIKU">


    <!-- you change the order by simply swap 1 and 2 number in the name attribute -->


    <args name="order_by_1" value="name"/>


    <args name="order_by_2" value="projectID"/>


    <args name="include_tasks" value="true"/>


    <args name="include_resources" value="true"/>
    <args name="include_custom" value="true"/>


    <!--args name="include_dependencies" value="true"/-->
    <!--args name="include_baselines" value="true"/-->
    <args name="include_allocations" value="true"/>
    <args name="include_actuals" value="true"/>
    <args name="include_estimates" value="true"/>

    </Header>

    <Query>
    <!--


    <FilterByCustomInfo name="project_billability" criteria="EQUALS">proj bill</FilterByCustomInfo>


    <FilterByCustomInfo name="first_bill_date" criteria="BETWEEN">1999-01-07,2002-07-01</FilterByCustomInfo>


    <FilterByCustomInfo name="project_risk" criteria="EQUALS">Medium</FilterByCustomInfo>


    <FilterByCustomInfo name="profitable_project" criteria="EQUALS">true</FilterByCustomInfo>


    <FilterByCustomInfo name="owner" criteria="EQUALS">last</FilterByCustomInfo>
    -->
    <Filter name="projectID" criteria="EQUALS">PRJ_COVRG_ACTUALS</Filter>
    <!--


    <Filter name="active" criteria="EQUALS">true</Filter>


    <Filter name="approved" criteria="EQUALS">true</Filter>


    <Filter name="closed" criteria="EQUALS">false</Filter>


    <Filter name="approvedForBilling" criteria="EQUALS">false</Filter>


    <Filter name="start" criteria="BETWEEN">1999-01-07,2001-01-15</Filter>


    <Filter name="finish" criteria="EQUALS">Customer</Filter>


    <Filter name="lastUpdatedDate" criteria="EQUALS">2002-01-26T11:42:03</Filter>


    <Filter name="resourceID" criteria="EQUALS">jsmith</Filter>


    <Filter name="trackMode" criteria="EQUALS">2</Filter>
    -->

    </Query>
    </NikuDataBus>




    NJ