Ten (MDX)
Zwraca bieżącą podmodułów do użytku z przydziałami w skrypcie obliczeniach Multidimensional Expressions (MDX).
This
Remarks
The This funkcja can be used in the place of any subcube wyrażenie to provide the current subcube within the current zakres within the MDX calculation script. The This funkcja must be used on the left side of an assignment.
Przykłady
Poniższy skrypt MDX fragmentu pokazuje jak tego słowa kluczowego można używać z instrukcji zakres w celu tworzenia przypisań do podmodułów:
Scope
(
[Date].[Fiscal Year].&[2005],
[Date].[Fiscal].[Fiscal Quarter].Members,
[Measures].[Sales Amount Quota]
) ;
This = ParallelPeriod
(
[Date].[Fiscal].[Fiscal Year], 1,
[Date].[Fiscal].CurrentMember
) * 1.35 ;
/*-- Allocate equally to months in FY 2002 -----------------------------*/
Scope
(
[Date].[Fiscal Year].&[2002],
[Date].[Fiscal].[Month].Members
) ;
This = [Date].[Fiscal].CurrentMember.Parent / 3 ;
End Scope ;
End Scope;