EssLogout

Description

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

Syntax
ESS_FUNC_M EssLogout (hCtx);
ESS_HCTX_ThCtx

Parameters

hCtx

Essbase 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 EssLogin() or EssAutoLogin functions.

Example

ESS_FUNC_M
ESS_Logout (ESS_HCTX_T hCtx)
{
   ESS_FUNC_M      sts = ESS_STS_NOERR;
   sts = EssLogout (hCtx);
   return(sts);
}

See Also

EssAutoLogin()
EssDeleteLocalContext()
EssGetActive()
EssLogin()
EssLogoutUser()