Returns the member ID of the application’s validation account.
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