You are viewing an old version of this page. View the current version.

Compare with Current View Page History

« Previous Version 8 Next »

ItemRef Example
<ItemGroupDef OID="INCLUSION" Name="Inclusion Criteria" Repeating="No">
		   ...
		   <ItemRef ItemOID="IDef.GENDER" Mandatory="Yes"/>
		   <ItemRef ItemOID="IDef.ISPREG" Mandatory="Yes" CollectionExceptionConditionOID="CECID.ISMALE"/>
</ItemGroupDef>

              <ConditionDef OID="CECID.ISMALE" Name="Subject's gender is Male">
                <Description>
                    <TranslatedText xml:lang="en" type="text/plain">Do not collect data for Male subjects</TranslatedText>
                </Description>
                <MethodSignature>
                    <Parameter Name="Gender" DataType="text"></Parameter>
                    <ReturnValue Name="IsMale" DataType="boolean"></ReturnValue>
                </MethodSignature>
                <FormalExpression Context="PL/SQL">
                    <Code>INCLUSION.IDef.GENDER = 'Male'</Code>
                </FormalExpression>
            </ConditionDef>

  • No labels