Skip to main content

%DeepSee.Time.WeekNumber

Class %DeepSee.Time.WeekNumber Extends %DeepSee.Time.AbstractLevel [ System = 3 ]

This class implements a ISO 8601 week number level within a time dimension. This represents the Week number (1 through 53) independent of year.

Methods

%SupportsNOW

ClassMethod %SupportsNOW() As %Boolean

Return true if this level supports a NOW member.

%IsIndependent

ClassMethod %IsIndependent() As %Boolean

Return true if this time level is independent of the actual date.

%Convert

ClassMethod %Convert(pTime As %DeepSee.Datatype.dateTime, pTimeOffset As %String = "") As %Integer [ CodeMode = expression ]

Convert a $H value to the logical value used for this level. This is used within the computed field logic for properties within a fact table based on this level.
. In this case, we convert $H to a week number: That is convert to a number 1 through 53.

%Count

ClassMethod %Count(pCube As %String, pDimNo As %Integer, pHierNo As %Integer, pLevelNo As %Integer) As %Integer

Return the total number of members within this level.

%GetName

ClassMethod %GetName() As %String

Return the user-visible name of this level.

%KeyToValue

ClassMethod %KeyToValue(pKey As %Integer, pFormat As %String = "", pOffset As %String = "") As %String

Convert a level key value to a display value. E.g., "1"

%ValueToKey

ClassMethod %ValueToKey(pValue As %String, pFormat As %String = "", pOffset As %String = "") As %Integer

Convert a level display value (n) to its corresponding key value. Return "" if there is no corresponding key.

%KeyToBaseRange

ClassMethod %KeyToBaseRange(pKey As %String, Output pStart As %Date, Output pEnd As %Date, pOffset As %String = "") As %Status

Convert a logical month number into starting and ending base values (in $H format).
As this dimension is independent of year, we use year 2000 as the basis of calculations.

%GetLevelMembers

ClassMethod %GetLevelMembers(Output pList As %List, pCube As %String, pFact As %String, pStartRange As %Date, pEndRange As %Date, pTimeOffset As %String = "", pFormat As %String = "") As %Status

Return an array of members of this level.

%GetRelatedKey

ClassMethod %GetRelatedKey(Output pRelatedKey As %String, pCube As %String, pFact As %String, pKey As %String, pRelation As %String, pOffset As %Integer = "", pEndKey As %String = "", pTimeOffset As %String = "") As %Status

Return, via pRelatedKey a key within this level related to pKey.