Bentley Communities
Bentley Communities
  • Site
  • User
  • Site
  • Search
  • User
  • Welcome
  • Products
  • Support
  • About
  • More
  • Cancel
AutoPLANT | OpenPlant | PlantWise
  • Product Communities
  • More
AutoPLANT | OpenPlant | PlantWise
AutoPLANT | OpenPlant | PlantWise Wiki How to Create Special Stamps using Reports in OpenPlant Isometrics Manager
    • Sign in
    • -AutoPLANT | Bentley Raceway and Cable Management | OpenPlant | PlantWise Wiki
      • -OpenPlant
        • +CONNECT Services - OpenPlant
        • +Example Configuration - CONNECT Edition
        • +Installations - OpenPlant CONNECT Edition Applications
        • +OpenPlant Download Links & Videos
        • OpenPlant Product Compatibility
        • +OpenPlant Modeler CONNECT
        • +OpenPlant PID CONNECT
        • +OpenPlant Isometrics Manager CONNECT
        • +OpenPlant Orthographics Manager CONNECT
        • +OpenPlant Support Engineering CONNECT
        • +OpenPlant Project Administrator CONNECT
        • +OpenPlant CONNECT Edition-PlantSight Integration
        • +OpenPlant Modeler v8i
        • -OpenPlant Isometrics Manager v8i
          • +OpenPlant Isometrics Manager for OpenPlant
          • -OpenPlant Isometrics Manager for AutoPLANT
            • Installation/Upgradation Steps of OpenPlant Isometrics Manager for AutoPLANT
            • +Errors, Logs, Messages, Crashes - OpenPlant Isometrics Manager for AutoPLANT
            • +Open/Save - OpenPlant Isometrics Manager for AutoPLANT
            • -Processing - OpenPlant Isometrics Manager for AutoPLANT
              • How to Create Special Stamps using Detail Sketches in OpenPlant Isometrics Manager
              • How to Create Special Stamps using Reports in OpenPlant Isometrics Manager
              • How to Compress Welds for Slip On Flange
              • How to Change Color, Line Style and Line Weight for OpenPlant Isometrics DWG Output
              • How to Set Required Line Weight in DWG Format Isometrics Model
              • How to Map OPIM (MicroStation) Line Style with dwg (AutoCAD) Line Style
              • How to Export Bill Of Material In CSV/Excel Format for AutoPLANT
              • How to Fix Mating Flange Orientation Direction in DWG for AutoPLANT - OpenPlant Isometrics
              • How to Map New AutoPLANT Component
              • How to Map New AutoPLANT Relationship in OpenPlant Isometrics Manager Schema
              • How to Map PDW To OpenPlant Isometrics Manager Classes
              • How to Map Tracing Property for Use in Open Plant Isometrics
              • How to Map Pipe Nozzle Properties for use in OpenPlant Isometrics Manager
              • How to Run AutoCAD Script (.SCR) on Generated dwg Isometrics
              • How to Use the Isometric Cleanup When the Output Format is DWG, PDF
            • +Settings/Attributes - OpenPlant Isometrics Manager for AutoPLANT
          • +Release Notes - OpenPlant Isometrics Manager
          • OpenPlant Isometrics Manager [FAQ]
        • +OpenPlant Project Administrator v8i
        • +OpenPlant PID v8i
        • +OpenPlant Orthographics Manager v8i
        • +OpenPlant Support Engineering v8i
        • +OpenPlant ModelServer v8i
        • +OpenPlant Reporting v8i
        • How to Connect with Bentley Technical Support Team using Microsoft Teams
        • How to Connect with Bentley Technical Support Team using Microsoft Teams via Browser
      • +Bentley AutoPLANT
      • +Bentley Navigator
      • +Bentley PlantSpace
      • +Plant Project Tools
      • +Bentley Raceway and Cable Management
      • i-model Composition Service for S3D
      • Working from home with OpenPlant
      • Working from home with Bentley Raceway and Cable Management
      • Working from home with AutoPLANT Modeler
    • How to Associate the Specification Based on Service in OpenPlant Modeler Connect

     
     Questions about this article, topic, or product? Click here. 

    How to Create Special Stamps using Reports in OpenPlant Isometrics Manager

    Applies To 
    Product(s): OpenPlant Isometrics Manager
    Version(s): 08.11.09.XXX (SS5) | 08.11.11.XXX (SS6)
    Environment:  Windows 7/8.1/10 (64 bit)
    Area:  Configuring the BOM and Reports
    Subarea:  -
    Original Author: Kestutis Mitkus, Bentley Product Advantage  Group

    Overview

    User is using some components for which special information like Stamp informing about those components should be added in generated isometrics model. Whole this process should be automated and if drawing contains those special components, then required stamps always should be placed in Isometrics.

    Steps to Accomplish

    1. Open Seed file and Report definition from required Projects Style folder or from OpenPlant Isometrics Manager Configuration dialog




    2. In report.def file create new Report for Bolt Stamp and save
      #-----------------------------------------------------------------------------
      # A STAMP for BOLTS
      #-----------------------------------------------------------------------------
      REPORT = BOLT_STAMP
      INCLUDE = EC_CLASS=BOLT
      COLUMN = 10: W :
      TEXT = @   STUD BOLTS 1-1/4" AND LARGER
      TEXT = @   TO BE HYDRAULIC TENSIONED
      TEXT = @   PER SPEC.
      Write =
      NODE    = 71
      END

    3. In isoseed.dgn file enable to see placed Text Nodes and select to place new a new Text Node


    4. Place it on required location, disable Text Nodes visibility and close OpenPlant Isometric Manager.


    5. Now Generated required Isometrics model again and verify the results


    INCLUDE Size condition

    There is requirement to place such stamp for bolts who are 1-1/4" and Larger and we can add additional rule to include only those bolt which are 1-1/14" or larger.

    1. Open Same report.def file and edit INLUDE line to add stamp only for isometric models which will contain EC_CLASS=BOLT equal or larger than 1 1/4"
      #-----------------------------------------------------------------------------
      # A STAMP for BOLTS
      #-----------------------------------------------------------------------------
      REPORT = BOLT_STAMP
      INCLUDE = EC_CLASS=BOLT && SIZE2>1.25
      COLUMN = 10: W :
      TEXT = @   STUD BOLTS 1-1/4" AND LARGER
      TEXT = @   TO BE HYDRAULIC TENSIONED
      TEXT = @   PER SPEC.
      Write =
      NODE    = 71
      END

    2. Generate Isometrics of component containing smaller size bolts and Stamp wont be placed

    Include another Stamp

    If model contains two type of special components than both stamps can be placed on same location. In order to achieve this a new report for new component type must be created and combined with previously created one.

    1. Open report.def file and comment NODE line for BOLT_STAMP
      #-----------------------------------------------------------------------------
      # A STAMP for BOLTS
      #-----------------------------------------------------------------------------
      REPORT = BOLT_STAMP
         INCLUDE = EC_CLASS=BOLT && SIZE2>1.25
         COLUMN = 10: W :
         TEXT = @   STUD BOLTS 1-1/4" AND LARGER
         TEXT = @   TO BE HYDRAULIC TENSIONED
         TEXT = @   PER SPEC.
         Write =
         #NODE    = 71
      END

    2. Create new report ELBOW_STAMP
      #-----------------------------------------------------------------------------
      # A STAMP for ELBOWS
      #-----------------------------------------------------------------------------
      REPORT = BOLT_STAMP
         INCLUDE = EC_CLASS=ELBOW && SIZE1>1.25
         COLUMN = 10: W :
         TEXT = @   ELBOWS 1-1/4" AND LARGER
         TEXT = @   TO BE HYDRAULIC TENSIONED
         TEXT = @   PER SPEC.
         Write =
      END

    3. Create new report STAMPS
      -----------------------------------------------------------------------------
      # Combined BOLTS and ELBOWS stamps
      #-----------------------------------------------------------------------------
      REPORT = STAMPS
         WRITE = BOLT_STAMP
         WRITE = ELBOW_STAMP
         NODE = 71
      END

    4. Generate Isometric which contains both component types and verify the results

    See Also

    Comments or Corrections?

    Bentley's Product Advantage  Group requests that you please confine any comments you have on this Wiki entry to this Comments or Corrections?" section. THANK YOU!

    • reports
    • AutoPLANT Modeler
    • Report Customization
    • Reports based on Size
    • OpenPlant Isometrics Manager
    • Report.def
    • Stamps
    • Share
    • History
    • More
    • Cancel
    • Kestutis Mitkus Created by Bentley Colleague Kestutis Mitkus
    • When: Fri, Jun 22 2018 9:17 AM
    • Kestutis Mitkus Last revision by Bentley Colleague Kestutis Mitkus
    • When: Fri, Dec 14 2018 1:33 PM
    • Revisions: 7
    • Comments: 0
    Recommended
    Related
    Communities
    • Home
    • Getting Started
    • Community Central
    • Products
    • Support
    • Secure File Upload
    • Feedback
    Support and Services
    • Home
    • Product Support
    • Downloads
    • Subscription Services Portal
    Training and Learning
    • Home
    • About Bentley Institute
    • My Learning History
    • Reference Books
    Social Media
    •    LinkedIn
    •    Facebook
    •    Twitter
    •    YouTube
    •    RSS Feed
    •    Email

    © 2021 Bentley Systems, Incorporated  |  Contact Us  |  Privacy |  Terms of Use  |  Cookies