プライマリ・コンテンツへ移動
Oracle® Hyperion Financial Management管理者ガイド

E79705-03
目次へ移動
目次

前
次

CellTextUnitItem

連結、計算または換算時に処理するセル・テキスト単位アイテムを戻します。この関数は、次のタイプのルールで使用できます:

  • 計算

  • 換算

  • 連結

構文

HS.OpenCellTextUnit("", "[Default]", "Entity", "Ascending")

戻り値

The entry for the specified item.

Set MyCellTextUnit = HS.OpenCellTextUnit("", "[Default]", "Entity", "Ascending")
NumItems= MyCellTextUnit.GetNumItems
For i = 0 to NumItems - 1
Scenario = MyCellTextUnit.Item(i).Scenario
Year = MyCellTextUnit.Item(i).Year
Period = MyCellTextUnit.Item(i).Period
Entity = MyCellTextUnit.Item(i).Entity
Value = MyCellTextUnit.Item(i).Value
Account = MyCellTextUnit.Item(i).Account
ICP = MyCellTextUnit.Item(i).ICP
Flow = MyCellTextUnit.Item(i)Custom("Flows")
Nature = MyCellTextUnit.Item(i).Custom("Nature")
...
...
...
CellText = MyCellTextUnit.Item(i).CellText
POV = MyCellTextUnit.Item(i).POV
Next