HypOpenForm

Data source types: Planning, Financial Management, Hyperion Enterprise

Description

HypOpenForm opens the form.

Syntax

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

Parameters

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

Return Value

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

Example

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