Returns the names of submission groups assigned to dimension members but not to submission phases, and of submission groups assigned to submission phases but not to members.
<HsvData>.GetUnassignedGroups lScenario, lPeriodID, pbstrMetaNoPhase, pbstrPhaseNoMeta
Argument | Description |
---|---|
lScenario | Long (ByVal). The member ID of the process unit's Scenario dimension member. |
lPeriodID | Long (ByVal). The member ID of the process unit's Period dimension member. |
pbstrMetaNoPhase | String. Returns the names of the submission groups assigned to dimension members but not to submission phases. |
pbstrPhaseNoMeta | String. Returns the names of the submission groups assigned to submission phases but not to members. |
The following function returns the names of submission groups assigned to submission phases but not to members.
Function getGroupsNoMembers(lScen As Long, lPer As Long) Dim cData As HsvData, sMetaNoPhase As String, sRet As String 'g_csession is an HsvSession object reference Set cData = g_cSession.Data cData.GetUnassignedGroups lScen, lPer, sMetaNoPhase, sRet getGroupsNoMembers = sRet End Function