General InformationThis opening ID is invoked for any component family reference. The following table provides you with information related to the definition of the opening ID:
Input ObjectsInput objects must be of the following type:
Context Object Parameters
SampleThe following sample maps "V_Name" attribute internal name with "Configuration" table column. It also maps "V_Title" attribute internal name with "Part Title" table column:
/*Rule created by xyz 1/4/2020*/ //Define list for attribute internal names let lAttributes (List) lAttributes.Append (“V_Name”) lAttributes.Append (“V_Title”) //Define list of Table columns //V_Name ==> Configuration //V_Title ==> Part Title let lColumns (List) lColumns.Append (“Configuration”) lColumns.Append (“Part Title”) //Set those lists in Parameters rules context Parameters.SetAttributeObject(“Attributes”, lAttributes) Parameters.SetAttributeObject(“Columns”, lColumns) |