EsbCreateGroup() creates a new group.
EsbCreateGroup (hCtx, GrpName)
ByVal hCtx As Long ByVal GrpName As String
hCtx | Essbase VB API context handle. |
GrpName | Name of a group to create. Group names can be up to 30 characters long. |
Declare Function EsbCreateGroup Lib "ESBAPIW" (ByVal hCtx As Long, ByVal GroupName As String) As Long Sub ESB_CreateGroup () Dim sts As Long Dim GroupName As String GroupName = "PowerUsers" '************* ' Create Group '************* sts = EsbCreateGroup (hCtx, GroupName) End SubEsbDeleteGroup()