ValidationAccount

Returns the member ID of the application’s validation account.

Read-only.

Example

The following function returns the label of the validation account.

Function GetValAcct()
Dim cHFMMetadata, cHFMAccts, cHFMDim, lId
' cHFMSession is a previously set HFMwSession object
Set cHFMMetadata = cHFMSession.metadata
Set cHFMAccts = cHFMMetadata.accounts
Set cHFMDim = cHFMAccts.dimension
lId = cHFMMetadata.ValidationAccount
GetValAcct = cHFMDim.GetMemberLabel(lId)
End Function