![]() |
#1 |
Участник
|
daxmusings: Query Functions: SysQueryRangeUtil Extensions
Источник: http://feedproxy.google.com/~r/Dynam...rangeutil.html
============== Now that overlayering is a thing of the past, how does one add methods to SysQueryRangeUtil as explained in my old post from back in 2013? Simple. Create your own class, name it whatever you want. Add a static method as described in the old post. The only difference is that you just put an attribute on top of it indicating that it's a query range utility method... So the method used in the old post, would now just look like this: [QueryRangeFunctionAttribute()] public static str customerTest(int _choice = 1) { AccountNum accountNum; switch(_choice) { case 1: accountNum = '1101'; break; case 2: accountNum = '1102'; break; } return accountNum; } If you're look for an example in the standard code, you can find class "SysQueryRangeUtilDMF" in the AOT. Источник: http://feedproxy.google.com/~r/Dynam...rangeutil.html
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору. |
|