繁体   English   中英

在Dynamics AX 2012中两个日期之间的月数

[英]Number of months between two dates in Dynamics ax 2012

是否有标准/通用方法/公式来计算Microsoft Dynamic Axe 2012中两个日期之间的月数?

最近,我遇到一种情况,需要计算两个日期之间的月数,我发现了可以使用的内置Dynamics AX 2012中的方法。

noOfIntervals = intvNo(refDate,inputDate,intvScale :: Month);

intvScale enumation have two values for months   

◾Month  
◾YearMonth  

If we provide the intvScale::Month then X++ ignores the year and assumes 
that month is calculated within one year.

If we provide the intvScale::YearMonth then X++ calculate the number of 
months between different years. Consider following example.

请从以下网站参考上述方法的示例: https : //community.dynamics.com/ax/b/alirazatechblog/archive/2013/06/11/dynamics-ax-2012-number-of-months-between-two-日期

还有另一种方法可以使用InfAdjValidation_MX :: monthDifference(FromDate _fromDate,ToDate _toDate)在Dynamics ax 2012中以月为单位计算两个日期之间的差异。

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM