获取总账日记账中的维度值


来源:http://sumitsaxfactor.wordpress.com/2011/12/16/getting-individual-dimension-combination-valuesdimension-storage-class-ax-2012/


static void getDimensionCombinationValues(Args _args)
 
{
 
    // DimensionAttributeValueCombination stores the combinations of dimension values
 
    // Any tables that uses dimension  combinations for main account and dimensions
 
    // Has a reference to this table’s recid
 
    DimensionAttributeValueCombination  dimAttrValueComb;
 
    //GeneralJournalAccountEntry is one such tables that refrences DimensionAttributeValueCombination
 
    GeneralJournalAccountEntry          gjAccEntry;
 
    // Class Dimension storage is used to store and manipulate the values of combination
 
    DimensionStorage        dimensionStorage;
 
    // Class DimensionStorageSegment will get specfic segments based on hierarchies
 
    DimensionStorageSegment segment;
 
    int                     segmentCount, segmentIndex;
 
    int                     hierarchyCount, hierarchyIndex;
 
    str                     segmentName, segmentDescription;
 
    SysDim                  segmentValue;
 
    ;
 
 
 
    //Get one record for demo purpose
 
    gjAccEntry = GeneralJournalAccountEntry::find(5637404882);
 
 
 
    setPrefix("Dimension values fetching");
 
    //Fetch the Value combination record
 
    dimAttrValueComb = DimensionAttributeValueCombination::find(gjAccEntry.LedgerDimension);
 
    setPrefix("Breakup for " + dimAttrValueComb.DisplayValue);
 
 
 
    // Get dimension storage
 
    dimensionStorage = DimensionStorage::findById(gjAccEntry.LedgerDimension);
 
    if (dimensionStorage == null)
 
    {
 
        throw error("@SYS83964");
 
    }
 
 
 
    // Get hierarchy count
 
    hierarchyCount = dimensionStorage.hierarchyCount();
 
    //Loop through hierarchies to get individual segments
 
    for(hierarchyIndex = 1; hierarchyIndex <= hierarchyCount; hierarchyIndex++)
 
    {
 
        setPrefix(strFmt("Hierarchy: %1", DimensionHierarchy::find(dimensionStorage.getHierarchyId(hierarchyIndex)).Name));
 
        //Get segment count for hierarchy
 
        segmentCount = dimensionStorage.segmentCountForHierarchy(hierarchyIndex);
 
 
 
        //Loop through segments and display required values
 
        for (segmentIndex = 1; segmentIndex <= segmentCount; segmentIndex++)
 
        {
 
            // Get segment
 
            segment = dimensionStorage.getSegmentForHierarchy(hierarchyIndex, segmentIndex);
 
 
 
            // Get the segment information
 
            if (segment.parmDimensionAttributeValueId() != 0)
 
            {
 
                // Get segment name
 
                segmentName = DimensionAttribute::find(DimensionAttributeValue::find(segment.parmDimensionAttributeValueId()).DimensionAttribute).Name;
 
                //Get segment value (id of the dimension)
 
                segmentValue        = segment.parmDisplayValue();
 
                //Get segment value name (Description for dimension)
 
                segmentDescription  = segment.getName();
 
                info(strFmt("%1: %2, %3", segmentName, segmentValue, segmentDescription));
 
            }
 
        }
 
    }
 
}


  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值