AXForum  
Вернуться   AXForum > Microsoft Dynamics AX > DAX Blogs
All
Забыли пароль?
Зарегистрироваться Правила Справка Пользователи Сообщения за день Поиск

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 23.06.2009, 15:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,643 / 848 (80) +++++++
Регистрация: 28.10.2006
SysDictCoder: Constructing date values
Источник: http://sysdictcoder.com/blog/constructing-date-values/
==============

Sometimes you have to construct at date at runtime with part of the date based on user input. Like when you have to summarize transactions for a given year.

Ax has a built-in function for this but all too often I see people resorting to convoluted string conversions to achieve the goal. Please don’t, it’s harder to reade, more error prone and less efficient. Use mkDate() instead.

So instead of writing something like this:

static void Job1(Args _args){ int givenYear = 2009; // Value acquired somewhere outside the method date fromDate, toDate; ; fromDate = str2date("1/1/" + int2str(2009), 123); toDate = str2date("1/1/" + int2str(2009), 123);}

Write this:

static void Job1(Args _args){ int givenYear = 2009; // Value acquired somewhere outside the method date fromDate, toDate; ; fromDate = mkDate(1, 1, givenYear); toDate = mkDate(31, 12, givenYear);}

To me, the most important advantage of mkDate() is clarity. Using string conversions distracts from the actual task of constructing a date. Additionally because all arguments to mkDate() are integers it’s easy to do input validation or build a whole bunch of date values in a loop, e.g. every first of every month.



Источник: http://sysdictcoder.com/blog/constructing-date-values/
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
SysDictCoder: Detecting default values Blog bot DAX Blogs 0 21.05.2009 12:05
daxsol: Axapta Kernel Functions Blog bot DAX Blogs 1 16.05.2009 19:22
Dynamics AX: Today to Julian Date value inside Dynamics AX, X++ Blog bot DAX Blogs 0 07.03.2009 06:12
axaptapedia: Packing date range values in queries Blog bot DAX Blogs 1 09.11.2007 13:10

Ваши права в разделе
Вы не можете создавать новые темы
Вы не можете отвечать в темах
Вы не можете прикреплять вложения
Вы не можете редактировать свои сообщения

BB коды Вкл.
Смайлы Вкл.
[IMG] код Вкл.
HTML код Выкл.
Быстрый переход

Рейтинг@Mail.ru
Часовой пояс GMT +3, время: 10:40.