Bentley Communities
Bentley Communities
  • Site
  • User
  • Site
  • Search
  • User
OpenPlant | AutoPLANT
  • Product Communities
OpenPlant | AutoPLANT
OpenPlant | AutoPLANT Wiki How to Create Special Stamps using Reports in OpenPlant Isometrics Manager in CONNECT Edition
    • Sign In
    • -OpenPlant | AutoPLANT 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
            • +Settings/Attributes - OpenPlant Isometrics Manager for AutoPLANT
            • How to Change Miscellaneous Attachment Annotation Container in CONNECT Edition
            • How to Change Text Font, Size, Color and Location in BOM Using Text Nodes in CONNECT Edition
            • How to Create Special Stamps using Detail Sketches in OpenPlant Isometrics Manager in CONNECT Edition
            • How to Create Special Stamps using Reports in OpenPlant Isometrics Manager in CONNECT Edition
            • How to Delete Ecxml Files, after certain Period in CONNECT Edition
            • How to Export Bill of Material In CSV Excel Format for AutoPLANT Modeler in CONNECT Edition
            • How to Publish Isometrics in DGN, DWG and PDF Output Formats in CONNECT Edition
            • How to Save Isometrics Output on Network Drive for AutoPLANT in CONNECT Edition
          • +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
        • How to get list of installed applications/programs on Windows Machine using Command Prompt.
        • How to get list of Windows Updates installed on the machine using Command Prompt.
        • How to Package WorkSpace to be Shareable to Users for OpenPlant Projects
        • How to find iModel.dgn file of another domain in PlantSight
      • +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
      • Your Feedback is important to us!

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

    How to Create Special Stamps using Reports in OpenPlant Isometrics Manager in CONNECT Edition

    Applies To 
    Product(s): OpenPlant Isometrics Manager in CONNECT Edition
    Version(s): 10.10.01.XXX
    Environment:  Windows 10 (64-bit)
    Area:  Configuring the BOM and Reports
    Subarea:  -
    Original Author: Evander Cabalagan, Bentley Global Technical Support

    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 Project Administrator. Select Root and Project, Settings, and Isometric Styles.




    2. Choose Isometric Style, select Style Config Root, select config, and select report.def.

    3. 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

    4. In isoseed.dgn file, select Place Text Node and activate Text Nodes under View Attributes.
      Note: Place the Text Node in desired location. Deactivate Text Node visibility and close OpenPlant Isometrics Manager.

    5. Generate Isometrics model again and verify the results.


    INCLUDE Size condition

    There is a requirement to place a stamp for bolts that are 1-1/4" and larger. We can add rule to include only the bolts with size of 1-1/4" or larger.

    1. Open the same report.def file and include the line to add stamp for isometric models that contains 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 model. Stud bolts having smaller size and stamp will not be visible.

    Include Another Stamp

    If the model has two types of special components, both stamps can be placed on same location. To achieve this new report for new component type must be created and combined with previously created one.

    1. Open the same report.def file and apply the given values.
      #-----------------------------------------------------------------------------
      # 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 Isometrics containing both component types and verify the results.

    See Also

    How to Insert a Custom Weld Report in Isometric Sheet
    Applies To Product(s): OpenPlant Isometrics Manager Version(s): 08.11.11.285 Environment: Windows 7/8.1/10 (64 bit) Area: Settings/Attributes Subarea: …
    Last edited over 4 years ago in OpenPlant | AutoPLANT > OpenPlant | AutoPLANT Wiki

    How to Generate Reports based on Size
    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: Settings/Attributes…
    Last edited over 4 years ago in OpenPlant | AutoPLANT > OpenPlant | AutoPLANT Wiki

    how to reclaim desired text node

    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!

    • Share
    • History
    • More
    • Cancel
    • Evan Cabalagan Created by Bentley Colleague Evan Cabalagan
    • When: Thu, Feb 2 2023 1:19 PM
    • Revisions: 1
    • 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

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