Data source types: Essbase, Planning
HypSetAliasTable() enables users to set the alias table
HypSetAliasTable (ByVal vtSheetName As Variant, ByVal vtAliasTableName As Variant)
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.
0 if successul, else negative value
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