Data source types: Essbase, Planning, Financial Management, Hyperion Enterprise
HypSetBackgroundPOV() sets the POV for the connection object in the POV Manager.
HypSetBackgroundPOV(vtFriendlyName, ParamArray MemberList())
ByVal vtFriendlyName As Variant
ParamArray MemberList() As Variant
vtFriendlyName:Connection name for the data source provider.
MemberList: A list of strings that describe the member combination for which a data value will be retrieved. If MemberList is Null or Empty, the top level value is used.
Returns 0 if successful; otherwise, returns the appropriate error code.
Declare Function HypSetBackgroundPOV Lib "HsAddin" (ByVal vtFriendlyName, ParamArray MemberList() As Variant) As Long
Sub SetBGPOV()
X=HypSetBackgroundPOV (“My Connection”,”Year#Qtr1”, “Market#East”)
End Sub