EsbSetPath

Sets the ESSBASEPATH environment variable for the runtime process.

Syntax

EsbSetPath (Path)
ByVal Path As String
ParameterDescription

Path

String describing the ESSBASEPATH environment variable

Notes

Return Value

Example

Sub ESB_SetPath
   Dim sts  As Long
   Dim Path As String
   
   Path = "C:\Hyperion\products\Essbase"
   sts  = EsbSetPath(Path)
End Sub