EsbLoadApplication() starts an Application on the server.
EsbLoadApplication (hCtx, AppName)
ByVal hCtx As Long ByVal AppName As String
hCtx | Essbase VB API context handle. |
AppName | Name of an application to load. |
None.
This function requires the caller to have Application Load/Unload privilege (ESB_PRIV_APPLOAD) for the specified application.
Declare Function EsbLoadApplication Lib "ESBAPIW" (ByVal hCtx As Long, ByVal AppName As String) As Long Sub ESB_LoadApplication () Dim sts As Long Dim AppName As String AppName = "Sample" '***************** ' Load Application '***************** sts = EsbLoadApplication (hCtx, AppName) End Sub