It's all about the answers!

Ask a question

In test Estimation there are two things one is Planning effort and other one is Execution Effort.


Sudarshan M (107116) | asked Jul 13 '20, 6:01 a.m.

 In test Estimation there are two things one is Planning effort and other one is Execution Effort. in test estimation I have given planning effort and excution effort and same reflecting in XML as well<rqm_process:hasWorkflowState rdf:resource="https://jazz.ibm.com:9443/qm/service/com.ibm.rqm.integration.service.IIntegrationService/process-info/_jI04oCitEeqCcJYvDCno0g/workflowstate/com.ibm.rqm.process.testplan.workflow/com.ibm.rqm.planning.common.approved"/>
        <rqm_qm:planningEffort rdf:datatype="http://www.w3.org/2001/XMLSchema#float">100.0</rqm_qm:planningEffort>
        <rqm_qm:isLocked rdf:datatype="http://www.w3.org/2001/XMLSchema#boolean">false</rqm_qm:isLocked>
        <dcterms:title rdf:datatype="http://www.w3.org/2001/XMLSchema#string">Testing a Test plan</dcterms:title>
        <dcterms:modified rdf:datatype="http://www.w3.org/2001/XMLSchema#dateTime">2020-07-13T08:53:36.563Z</dcterms:modified>
        <dcterms:contributor rdf:resource="https://jazz.ibm.com:9443/jts/users/tanuj"/>
        <rqm_qm:executionEffort rdf:datatype="http://www.w3.org/2001/XMLSchema#float">3000.0</rqm_qm:executionEffort>Here My requirement is  instead of 100.0 I need 100 PERSON HOURS which is shown as like in WEBCLIENT 


is there anyway possible to do it?

Accepted answer


permanent link
Bharath Rao (88530) | answered Jul 13 '20, 11:54 p.m.

 Hi Sudarshan,


From the above XML, I see you are using the OSLC API. 
If you use the REST API, you get the below:

<ns2:planningEffort>100</ns2:planningEffort>
        <ns2:executionEffort>72000</ns2:executionEffort>
        <ns2:planningEffortPersonHours>100.0</ns2:planningEffortPersonHours>
        <ns2:executionEffortPersonHours>72000.0</ns2:executionEffortPersonHours>
        <ns2:planning effort="100.0" units="PH"/>
        <ns2:execution effort="3000.0" units="PD"/>
    </ns2:estimation>

where the unit is Person Hours.

Sudarshan M selected this answer as the correct answer

Your answer


Register or to post your answer.