EsbRemoveAlias() permanently removes an alias table from the active database.
EsbRemoveAlias (hCtx, AltName)
ByVal hCtx As Long ByVal AltName As String
hCtx | Essbase VB API context handle. |
AltName | Name of an alias table to remove. |
Declare Function EsbRemoveAlias Lib "ESBAPIW" (ByVal hCtx As Long, ByVal Name As String) As Long Sub ESB_RemoveAlias () Dim sts As Long Dim Name As String Name = "TestAlias" '************* ' Remove Alias '************* sts = EsbRemoveAlias (hCtx, Name) End SubEsbClearAliases()