Data provider 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: The connection name of the data 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 HypSetDimensions 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 Example_ypSetBackgroundPOV() X=HypSetBackgroundPOV ("My Connection","Year#Qtr1", "Market#East") End Sub