Data provider types: Oracle Essbase, Oracle Hyperion Planning, Oracle Hyperion Financial Management, Oracle Hyperion Enterprise®
Description
HypSetAsDefault() sets a connection default.
Syntax
HypSetAsDefault (vtFriendlyName)
ByVal vtFriendlyName As Variant
Parameters
vtFriendlyName: The name of the private active connection to be set as the default. It must be a private connection name whose value can be found in the Registry: HKCU\Software\Hyperion Solutions\HyperionSmartView\Connections
Return Value
If successful, return value is 0; otherwise, the appropriate error code is returned.
Example
Public Declare Function HypSetAsDefault Lib "HsAddin" (ByVal vtFriendlyName As Variant) As Long
Sub Example_SetAsDefault()
sts = HypSetAsDefault("buildtie7_w32Simple_w32Simple")
MsgBox (sts)
End Sub