povString

Gets or sets the Period, Year, Scenario, and Value dimension members for a journal report’s Point of View. The Point of View is represented with the following syntax, with labels of dimension members replacing Scenario, Year, Period, and Value:

  S#Scenario.Y#Year.P#Period.V#Value

Tip:

You can use GetReportDefinition to create a journal report based upon the HFMwQueryDef instance’s properties.

You can also get or set these dimension members with the period, year, scenario, and value properties.

Read-write.

Example

The following example sets the Scenario dimension to Actual, the Year dimension to 2003, the Period dimension to October, and the Value dimension to <Entity Curr Adjs>:

'cHFMQueryDef is an HFMwQueryDef object reference.
cHFMQueryDef.povstring = "S#Actual.Y#2003.P#October." & _ 
     "V#<Entity Curr Adjs>"