Product Model
The Product Model object represents a specific model of a product in a Product Family Structure.
XML Format
<csvProductFamilyMember
handler="wt.productfamily.LoadProductFamilyMember.createProductFamilyMember">
<csvpfmName>NAME_OF_PRODUCT_MODEL</csvpfmName>
<csvpfmNumber>NAME_OF_PRODUCT_MODEL</csvpfmNumber>
<csvpfmType>WCTYPE|wt.productfamily.ProductModel</csvpfmType>
<csvtopPFNumber>NAME_OF_PRODUCT_FAMILY</csvtopPFNumber>
<csvversion>VERSION</csvversion>
<csviteration>ITERATION</csviteration>
<csvcontainerPath>CONTAINER_PATH</csvcontainerPath>
</csvProductFamilyMember>
Attributes
Attribute
Description
Required or Optional?
csvpfmName
Name of the product model.
Optional
csvpfmNumber
Number of the product model.
Optional
csvpfmType
Type definition of the product model. This must be of either class ProductModel or its subtype.
Required
csvtopPFNumber
Number of the Product Family to associate the product model with.
Required
csvversion
Version of the product model.
Optional
csviteration
Iteration of the product model.
Optional
csvcontainerPath
Container path, (for example, product), in which the product model will reside.
Optional
Example
<csvProductFamilyMember
handler="wt.productfamily.LoadProductFamilyMember.createProductFamilyMember">
<csvpfmName>CustomProductModel</csvpfmName>
<csvpfmNumber>00001</csvpfmNumber>
<csvpfmType>WCTYPE|wt.productfamily.ProductModel</csvpfmType>
<csvtopPFNumber>CustomProductFamily</csvtopPFNumber>
<csvversion>A</csvversion>
<csviteration>1</csviteration>
<csvcontainerPath>/wt.inf.container.OrgContainer=CustomOrganization/wt.pdmlink.PDMLinkProduct=CustomProduct</csvcontainerPath>
</csvProductFamilyMember>
Was this helpful?