EsbDeleteGroup() deletes an existing group.
EsbDeleteGroup (hCtx, GrName)
ByVal hCtx As Long ByVal GrpName As String
hCtx | Essbase VB API context handle. |
GrpName | Name of a group to delete. |
Declare Function EsbDeleteGroup Lib "ESBAPIW" (ByVal hCtx As Long, ByVal GroupName As String) As Long Sub ESB_DeleteGroup () Dim sts As Long Dim GroupName As String GroupName = "PowerUsers" '************* ' Delete Group '************* sts = EsbDeleteGroup (hCtx, GroupName) End SubEsbCreateGroup()