EssLogout

Logs out a user from an Essbase Server.

Syntax

ESS_FUNC_M EssLogout (hCtx);
ParameterData TypeDescription

hCtx

ESS_HCTX_T

API context handle to logout.

Notes

Return Value

None.

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