General InformationThe Input ObjectsYou can use the attributes of the design fastener references and instances or their respective implementing process references and instances for the implementation. Input objects must be of the following types:
Context Object Parameters
Additional InformationUse the following names to set the corresponding default manufacturing fastener attributes:
You can set the final attributes of the manufacturing fastener as follows:
If the name of the manufacturing fastener attribute corresponds to RIVET_TABLE_MAPPING then:
SampleThe following sample shows you how to create parameter attributes ( /* No INPUTS */ /* OUTPUTS */ Let OutListDesign(List) /* the list of attributes on the input design fastener reference*/ Let OutListProcess(List) /* the list of attributes on the input design process reference*/ Let OutListDesignInst(List) /* the list of attributes on the input design fastener instance*/ Let OutListProcessInst(List) /* the list of attributes on the input design process instance*/ OutListDesign.Append(List("V_description", "RIVET_TABLE_MAPPING")) OutListDesign.Append(List("V_discipline", "Fst_Discipline")) OutListProcessInst.Append(List("V_description", "Fst_INSTPrc_Description")) OutListDesignInst.Append(List("V_description", "Fst_INST_Description")) Parameters->SetAttributeObject("design_attr_mapping_list", OutListDesign) Parameters->SetAttributeObject("planning_attr_mapping_list", OutListProcess) Parameters->SetAttributeObject("design_attr_mapping_list_oninstance", OutListDesignInst) Parameters->SetAttributeObject("planning_attr_mapping_list_oninstance", OutListProcessInst) |