Fluidic (Piping/HVAC) BOM Table Template Business Rule (Piping_Pipe_Length)

An opening ID is an entry point used to customize business logic. The Piping_Pipe_Length business rule opening ID is used to compute the length property of a Piping_Pipe.

Note: For more information about customization by business rules, see Installation and Setup: Customize: Behavior: Data Setup: Customization by Business Rules.

This page discusses:

General Information

This opening ID is invoked during the creation of a Piping or a HVAC BOM table template.

It is simply using the Length attribute of the pipe.

Customizing this rule lets you to implement another way to compute the length of pipes.

Sample

Result = NULL

let PipingPipeObject(Piping_Pipe)
set PipingPipeObject = ThisObject.Reference

if (PipingPipeObject <> NULL) { Result = PipingPipeObject.V_Length }

//Message("Result: ", Result)