2010-07-04 4 views

답변

1

그것은 당신이 이런 식으로 사용할 수있는 기반 매크로 expFormat라는 버전이있을 수 있습니다 SysDataExpImp 매크로 라이브러리과 같습니다

#SysDataExpImp 
#if.expFormat('EXPFORMAT VER. 5.0') 
info('Microsoft Dynamics AX 2009'); 
#endif 
#if.expFormat('EXPFORMAT VER. 4.01') 
info('Microsoft Dynamics AX 4.0 SP1'); 
#endif 

#AotExport 
#if.expDataSet 
info('Microsoft Dynamics AX 2009'); 
#endif 
#ifnot.expDataSet 
info('older than Microsoft Dynamics AX 2009'); 
#endif 
:

또한 만 AotExport 매크로 라이브러리 AOT 객체 및 데이터 세트의 각 유형에 대한 매크로가 2009 년에 도입했다 AX 2009 년에 발견 된 매크로를 사용할 수 있습니다

관련 문제