HypSetSharedConnectionsURL

Data Source Types: Essbase, Planning, Financial Management, Hyperion Enterprise

Description

HypSetSharedConnectionsURL() sets the Shared Connections URL in the config file and Options dialog box.

Syntax

HypSetSharedConnectionsURL (vtDefaultURL As Variant)

ByVal vtAPSURL As Variant)

Parameters

vtDefaultURL: the new Shared Services URL to be set.

Return Value

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

Example

Declare Function HypSetSharedConnectionsURL Lib "HsAddin" (ByVal vtAPSURL
As Variant) As Long
Sub SubHypSetSharedConnectionsURLTest()
Dim lRet As Long
lRet = HypSetSharedConnectionsURL("http://<server>:19000/workspace/SmartViewProviders")
End Sub