Additional Windchill Capabilities > Service Information Management > About Windchill Service Information Manager - S1000D Module > Applicability > Importing ACT/CCT Applicability Data > ACT Applicability Data
  
ACT Applicability Data
The content of ACT data module generates standard Windchill options and variants. The resulting options have a set of S1000D attributes that help to identify the source construct in the data modules. They also have a set of default Windchill attributes.
The applicability components are mapped as follows:
For an imported ACT file
Applicability Component
Windchill Component
<productAttributeList>
Creates an option group.
The option group label is the data module code of the ACT data module.
<productAttribute>
Creates an option.
The id attribute defines the Identifier attribute (S1000D), and the Name attribute (Windchill) of the option.
<name>
Name attribute of option (S1000D)
<descr>
Description attribute of option (S1000D and Windchill)
<enumeration>
Creates a choice.
The choice name is defined by the applicPropertyValues attributes.
The follow code fragment is an example of the ACT applicability information mapping:
<content>
<applicCrossRefTable>
<productAttributeList>
<productAttribute id="model" valuePattern=".*">
<name>Model</name>
<displayName/>
<descr>Model of the bike</descr>
<enumeration applicPropertyValues="Brook trekker|Mountain storm"/>
</productAttribute>
<productAttribute id="version" valuePattern="Mk(1|9)">
<name>Version</name>
<displayName/>
<descr>Version of the bike</descr>
<enumeration applicPropertyValues="Mk1|Mk9"/>
</productAttribute>
</productAttributeList>
</applicCrossRefTable>
</content>
In the code fragment above, the following options and choices would be created:
Windchill Options
Windchill Choices
model
model=Brook trekker
model=Mountain storm
version
version=Mk1
version=Mk9
The following option attributes would be created:
S1000D Attributes
Windchill Attributes
Option 1
Option 1
Identifier
model
Name
model
Name
Model
Description
Model of the bike
Description
Model of the bike
Option 2
Option 2
Identifier
version
Name
version
Name
Version
Description
Version of the bike
Description
Version of the bike