Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

If the CollectionExceptionConditionOID is provided, it references a ConditionDef that defines the circumstances under which collection of the Item may be omitted, i.e. when the FormalExpression evaluates to True. For example, a data collection instrument designed to collect data for an item 'IsPregnant' for an item group 'InclusionCriteria' may be omitted for male subjects. The referenced ConditionDef would be defined as illustrated below. When the FormalExpression evaluates to True, the Item with OID IG.ISPREG need not be collected.

Example

Include Page
ItemRef Example
ItemRef Example

Code Block
<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.IDef.GENDER = 'Male' </FormalExpression> </ConditionDef>

Pagenav2