Deletes a drill-through URL, with the given URL name, within the active database outline.
Syntax
ESS_FUNC_M EssDeleteDrillThruURL (hCtx, URLName);
Parameter | Data Type | Description |
---|---|---|
hCtx | ESS_HCTX_T | API context handle |
URLName | ESS_STR_T | Drill-through URL name |
Return Value
If successful, deletes the named drill-through URL in the active database outline.
If unsuccessful, returns an error code.
Access
Caller must have database Design privilege (ESS_PRIV_DBDESIGN) for the specified database.
Caller must have selected the specified database as the active database using EssSetActive().
Example
ESS_STS_T sts = ESS_STS_NOERR; sts = EssDeleteDrillThruURL(hCtx, "Drill Through to EPMI"); printf("EssDeleteDrillThruURL sts: %ld\n",sts);