EsbLogout

Description

EsbLogout() logs a user out from an Essbase server.

Syntax
EsbLogout (hCtx)
ByVal hCtx As Long

Parameters

hCtxEssbase VB API context handle to logout.

Return Value

None.

Notes

Access

To call this function, the caller must have previously logged in successfully using either the EsbLogin() or EsbAutoLogin() functions.

Example

Declare Function EsbLogout Lib "ESBAPIW" (ByVal hCtx As Long) As Long

Sub ESB_Logout ()
   Dim sts As Long

   '*******
   ' Logout
   '*******
   sts = EsbLogout (hCtx)
End Sub 

See Also

EsbAutoLogin()
EsbDeleteLocalContext()
EsbGetActive()
EsbLogin()
EsbLogoutUser()