Adding Attributes to Types

If you want to add an attribute to a type, you need to add the attribute to the type prior to editing or creating a webform that will display that attribute.

  1. Run the following MQL commands.
    Run MQL from the Live Collaboration Server folder or from 3DSpace. For more information, see Installation and Setup | Administrate | 3DEXPERIENCE Platform | 3DSpace | Collaboration and Approvals | Administrative Utilities | Running MQL
  2. Locate the type: MQL>list type <TYPE_NAME>;
  3. add atrribute to type : MQL>modify type <TYPE_NAME> add attribute <ATTRINUTE_NAME>
    For example, MQL>modify type Part add attribute 'no_of_days';
  4. To remove attribute: MQL>modify type <TYPE_NAME> remove attribute <ATTRINUTE_NAME>
    For example, MQL>modify type Part remopve attribute 'no_of_days';