I believe I have found and corrected a bug in the simple method named 
"createDataResource" (short-description="Create a Data Resource") located in 
DataServices.xml.  The dataTemplateTypeId is undefined in the original code but 
is passed as a valid field in the paramenters map.  Please review for accuracy 
and make the change if appropriate.
 
Original code:
 
        <if-empty field-name="dataTemplateTypeId">
            <set field="newEntity.dataTemplateTypeId" value="NONE"/>
        </if-empty>

 

Corrected code:

       <if-empty field-name="parameters.dataTemplateTypeId">
            <set field="newEntity.dataTemplateTypeId" value="NONE"/>
        </if-empty>
 
 
Thanks
 
Chris Juettner
Integral Business Solutions
 
 

Reply via email to