Logs out a user from an Essbase Server.
Syntax
ESS_FUNC_M EssLogout (hCtx);
Parameter | Data Type | Description |
---|---|---|
hCtx | ESS_HCTX_T | API context handle to logout. |
Notes
This function logs out only the login represented by the specified context handle. No other logins or contexts are affected, even if using the same user name.
This function should only be used for login contexts. For local contexts, use the EssDeleteLocalContext() function.
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