Indicates the value assigned to the IsICP attribute of an Account dimension member.
<HsvAccounts>.GetIsICP lItemID, psIsICP
The following function takes the label of an Account dimension member and returns the value of the account’s IsICP attribute.
Function getIsIcpLabel(sLabel As String) As Integer Dim cAccounts As HsvAccounts, iRet As Integer, lAcctID As Long Dim cTreeInfo As IHsvTreeInfo Set cAccounts = m_cMetadata.Accounts Set cTreeInfo = m_cMetadata.Accounts lAcctID = cTreeInfo.GetItemID(sLabel) cAccounts.GetIsICP lAcctID, iRet getIsIcpLabel = iRet End Function