Repository.Xfmea.GetAllXfmeaFunctions Method

From ReliaWiki
Revision as of 23:58, 20 August 2015 by Kate Racaza (talk | contribs) (Created page with '{{Template:API}}{{Template:APIBreadcrumb|10|.Repository}} <onlyinclude>Gets a list of all existing FMEA functions in the current project. Returns an '''[[X…')
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
APIWiki.png


Member of: SynthesisAPI10.Repository


Gets a list of all existing FMEA functions in the current project. Returns an XfmeaFunction object array that contains the properties of the functions.

Syntax

.Xfmea.GetAllXfmeaFunctions(HID, IncludeLinkedAnalyses)

Parameters

HID

Integer. The Hierarchy ID or record ID of system hierarchy item. (Required)

IncludeLinkedAnalyses

Boolean. Indicates whether to include linked FMEAs in the array. (Required)


Example

This example assumes that system hierarchy items with FMEA functions exist in the first available project of a repository.

VBA|VB.NET

 'Add code to connect to a Synthesis repository. 
  Dim MyRepository As New Repository
  ... 

 
 'Get a list of all FMEA functions in project #1. 
 Dim ListofFunctions() As XfmeaFunction
 MyRepository.Project.SetCurrentProject (1)  
 ListofFunctions = MyRepository.Xfmea.GetAllXfmeaFunctions(1,True)

 'Output sample: Display the description and ID number of the first available function in the project. 
 Dim FunctionDsc As String
 Dim FunctionID As String
 FunctionDsc = ListofFunctions(0).Dsc
 FunctionID = ListofFunctions(0).FunctionID
 MsgBox (FunctionDsc & ": " & FunctionID)