Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Code Block
languagexml
titleItemRef Example
linenumberstrue
<ItemGroupDef OID="INCLUSION" Name="Inclusion Criteria" >
		   ...
		   <ItemRef ItemOID="IDef.GENDER" Mandatory="Yes"/>
		   <ItemRef ItemOID="IDef.ISPREG" Mandatory="Yes" CollectionExceptionConditionOID="CECID.ISMALE"/>
</ItemGroupDef>

<ConditionDef OID="CECID.ISMALE">
     <TranslatedText xml:lang="en">Do not collect data for Male subjects </TranslatedText>
	 <FormalExpression Context="PL/SQL">
	 	  INCLUSION<Code>INCLUSION.IDef.GENDER = 'Male'</Code>
	 </FormalExpression>
</ConditionDef>

...