HypSetBackgroundPOV

Data source types: Essbase, Planning, Financial Management, Hyperion Enterprise

Description

HypSetBackgroundPOV() sets the POV for the connection object in the POV Manager.

Syntax

HypSetBackgroundPOV(vtFriendlyName, ParamArray MemberList())

ByVal vtFriendlyName As Variant

ParamArray MemberList() As Variant

Parameters

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.

Return Value

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

Example

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