To print a data model description

  1. In AutoCAD Map 3D, switch to the Maintenance workspace and open a project.
  2. In the Industry Model Explorer, select the industry model.
  3. Click Output tab > Reports And Profiles panel > Open Report.
  4. In the Report dialog box, select the report Data Model Description.
  5. Click Preview.
  6. In the preview window, select one of the output options.

To export a data model description to Excel

  1. In the Infrastructure Administrator, do one of the following:
    • Click Enterprise and connect to the enterprise industry model. Open a project.
    • Click File and open an industry model drawing or template.
  2. Click Industry Model menu > SQL Sheet.
  3. In the SQL Sheet, execute the following command:
    excel select a.name Topic_Name, 
    a.caption Topic_Caption,
    b.f_class_name FeatureClass_Name, 
    b.caption FeatureClass_Caption, 
    c.name Attribute_Name, 
    c.caption Attribute_Caption, 
    c.description Attribute_Description from im_topic a, im_dictionary b, im_attribute c 
    where a.id = b.topic_id and b.f_class_id = c.f_class_id order by a.name, b.f_class_name, c.name