GetApplicationDirectory

Returns the name of the application folder for an application.

An application folder is located on the application server. An application folder’s name consists of the application name appended to the system folder. For example, if the system folder is C:\Financial Management, and the application name is Acme, then GetApplicationDirectory would return the following path:

  C:\Financial Management\Acme\

System folders are defined with Financial Management Server Administrator. For details, see the Oracle Hyperion Financial Management, Fusion Edition Administrator's Guide.

Tip:

Financial Management automatically creates an application folder when it generates items such as reports. If no such items have been generated for an application, the path returned by GetApplicationDirectory might not yet exist on the application server. In this case, the returned path indicates the directory that Financial Management will create when it generates items such as reports.

Syntax

<HsvSystemInfo>.GetApplicationDirectory()

Return Value

String. Returns the path of the application directory.

Example

This example prints the application directory to the Immediate window.

Dim cHsvSystemInfo As HsvSystemInfo
Set cHsvSystemInfo = m_cHsvSession.SystemInfo
Debug.Print cHsvSystemInfo.GetApplicationDirectory