HypGetSharedConnectionsURL

Data source types: Essbase, Planning, Financial Management, Hyperion Enterprise

Description

HypGetSharedConnectionsURL() returns the Shared Connections URL to be used. (also shown in the Options dialog box).

Syntax

HypGetSharedConnectionsURL (vtSharedConnURL As Variant)

ByRef vtSharedConnURL As Variant

Parameters

vtSharedConnURL: the output parameter that contains the Oracle's Hyperion® Shared Services URL, if successful.

Return Value

Returns 0 if successful; otherwise, returns the appropriate error code.

Example

Declare Function HypGetSharedConnectionsURL Lib "HsAddin" (ByRef vtSharedConnURL As Variant) As Long
Sub SubHypGetURL()
Dim lRet As Long
Dim conn As Variant
lRet = HypGetSharedConnectionsURL(conn)
MsgBox (lRet)
MsgBox (conn)
End Sub