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" Repeating="No">
                <ItemRef ItemOID="ID.GENDER" Mandatory="Yes">
                    <Origin Type="Collected" Source="Sponsor"></Origin>
                </ItemRef>
                <ItemRef ItemOID="ID.ISPREG" Mandatory="Yes" CollectionExceptionConditionOID="CECID.ISMALE"/>
                    <Origin Type="Collected" Source="Sponsor">
                    <Source>
                        <Source><SourceItem>
                            <Resource Type="ODM"  <SourceItem>Name="ItemDef" Label="Gender">
                                <Resource<Selection TypePath="../../ItemDef[@OID='ID.GENDER" Name="Gender"']/@Value"></Resource>Selection>
                            </SourceItem>Resource>
                        </Source>
SourceItem>
                    </Source>
                </Origin>
            </ItemGroupDef>
            
                  <ConditionDef<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>IsMale = (Gender := 'Male')</Code>
                <               </FormalExpression>
            </ConditionDef>

...