Previous Topic

Next Topic

Book Contents

AssocCDD

Purpose

Specifies the mapping in a customer-defined database of an association between two forms. An association definition is specified as a formset with TYPE=RELATION. 

Syntax

<ASSOCCDD
  REFNAME="name"
   [DESIGNNOTE="text"]
   [ACTIVE="true|false"]
   TARGETTABLE="name"
   ASSOCREFNAME="name"
   [LABEL="name"]/>

Attributes

REFNAME="name"

RefName of the CDD to which to map the association. Required.

DESIGNNOTE="text"

Free-form text, with a maximum of 255 characters, containing any information you want to capture about the design of the component. This information is for documentation only and is not displayed. Optional.

ACTIVE="true|false"

Indicates whether the component is active. The options are true or false. True is the default. Optional.

TARGETTABLE="name"

Name of the target CDD table in which the components of the association will be updated. An association table consists of four columns containing the RefNames of the two forms that make up the association, along with the visit in which each form occurs. Required.

ASSOCREFNAME="name"

RefName of the formset that defines the association. Required.

LABEL="name"

Text label for the association. The label can have a maximum of 255 characters. Optional.

Example

The following example illustrates the mapping of an association between the AE and CM forms in the COMMONCRF formset.

<EXTERNALMAP>

   <PATH>
      <CHAPTERREF REFNAME="COMMONCRF"/>
   </PATH>

   <ASSOCCDD REFNAME="CDD_WITH_ASSOC"
      TARGETTABLE="t_assoc1"
      ASSOCREFNAME="AECM_ASSOC"/>

</EXTERNALMAP>

Send Feedback