User Functions
- Last UpdatedJan 24, 2023
- 1 minute read
Implements complex structure in the R2 interface.
ATTA name !!attaname() and PCOM classification !!pcomClasses() are displayed in the AVEVA Pipe Stress Interface - R2: Settings window.
Both are provided as an example and placed in the PMLLIB path below userfunction. The !!attaname() as an example:
-------------------------------------------------------
define function !!attaName() is string
if (!!ce.type inset('ATTA','ANCI','LUANCI')) then
return !!ce.stext & '-' & !!ce.:mdssuppfunc
else
return !!ce.name
endif
endfunction
-------------------------------------------------------