EsbGetGlobalState() gets the server global state structure which contains parameters for system administration.
EsbGetGlobalState (hCtx, pGlobal)
ByVal hCtx As Long pGlobal As ESB_GLOBAL_T
hCtx | Essbase VB API context handle |
pGlobal | Buffer to receive a global state structure |
Declare Function EsbGetGlobalState Lib "ESBAPIW" (ByVal hCtx As Long, Global As ESB_GLOBAL_T) As Long Sub ESB_GetGlobalState () Dim sts As Long Dim pGlobal As ESB_GLOBAL_T '***************** ' Get Global State '***************** sts = EsbGetGlobalState (hCtx, pGlobal) End SubEsbSetGlobalState()