获取维度数组的名称

Get name of dimensional array

我目前正在尝试将 HyperArray 参数与数据库相匹配。

我正在尝试使维度名称与数据库名称相匹配。我正在努力 call/get 维度名称。如果我 select Dimension 1.

有没有人建议我如何调用维度名称

Modules is a HyperArray Parameter

Database

如您所知,一个变量可以有多个维度,每个维度可以有多个值,其中每个值都与一个名称相关联。

有两个重要的索引,第一个是与维度索引相关联的索引,我们称之为 dimIndex 在您的情况下,只有 1 个维度称为 Module_List,因此 dimIndex 必须等于 0

第二个是该维度的值,在您的情况下 Module_List 的值为 Busman_113 和 Busman_124

Modules.getDimensions()[dimIndex].getIndexName(0) 将等于“Busman_113” 和 Modules.getDimensions()[dimIndex].getIndexName(1) 将等于“Busman_124”