HypSetAliasTable

Data source types: Essbase, Planning

Description

HypSetAliasTable() enables users to set the alias table

Syntax

HypSetAliasTable (ByVal vtSheetName As Variant, ByVal vtAliasTableName As Variant)

Parameters

vtSheetName: For future use. Currently the active sheet is used.

vtAliasTableName: Text name of the alias table. vtAliasTableName is of the form “Default”, “Long Names” and so forth.

Return Value

0 if successul, else negative value

Example

Public Declare Function HypSetAliasTable Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtAliasTableName As Variant) As Long

Sub Sample_SetActiveConnection
   sts = HypSetAliasTable(Empty,"Long Name")
End sub