LastProcessed

The LastProcessed property of the Dimension interface contains the date and time when a dimension was last processed.

Applies To
clsAggregationDimension clsDatabaseDimension
clsCubeDimension clsPartitionDimension

Data Type

Date

Access

Read-only

Remarks

The LastProcessed property for an object is undefined and will raise an error if the value of the State property is olapStateNeverProcessed.

Example

Use the following code to determine when a dimension object was last processed:

'Assume an object (dsoDim) of ClassType clsDimension exists

If dsoDim.State <> olpaStateNeverProcessed Then

    If dsoDim.LastProcessed < date Then

        'Code to process the dimension

    End If

End If

See Also
About Decision Support Objects Using Decision Support Objects
LastUpdated Properties Cross-Reference

(c) 1988-1998 Microsoft Corporation. All Rights Reserved.