Data source types: Planning, Financial Management, Hyperion Enterprise
HypOpenForm (vtSheetName, vtFolderPath, vtFormName, vtDimensionList(), vtMemberList())
ByVal vtSheetName As Variant
ByVal vtFolderPath As Variant
ByVal vtFormName As Variant
ByRef vtDimensionList() As Variant
ByRef vtMemberList() As Variant
vtSheetName: For future use. Currently the active sheet is used.
vtFolderPath: Folder path name
vtFormName: Name of the data form
vtDimensionList(): not in use
vtMemberList(): not in use
Public Declare Function HypOpenForm Lib "HsAddin" (ByVal vtSheetName As Variant, ByVal vtFolderPath As Variant, ByVal vtFormName As Variant, ByRef vtDimensionList() As Variant, ByRef vtMemberList() As Variant) As Long Sub getpagepovchoices_test() Dim DimList As Variant Dim MemList As Variant sts = HypOpenForm(Empty, "/Forms/data1", "data1", DimList, MemList) MsgBox (sts) End Sub