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

 
 
Опции темы Поиск в этой теме Опции просмотра
Старый 22.12.2009, 21:05   #1  
Blog bot is offline
Blog bot
Участник
 
25,643 / 848 (80) +++++++
Регистрация: 28.10.2006
axaptapedia: CalendarWeek
Источник: http://www.axaptapedia.com/CalendarWeek
==============

Summary: Calculate the correct Calendar Week according to the German Standard


///
/// Calculates the Calendar Week of a Date according to the German Standard
///
/// The Date
/// Returns an Integer representing the Calendar Week
///
///
/// This Method is only relevant for the German Culture.
/// It is considerably faster than the Method
/// .
///
///
/// The Calculation is based on the
/// C++-Algorithm from Ekkehard Hess out of an Article on
/// 29 July 1999 in the Newsgroup
/// borland.public.cppbuilder.language
///(released for general use)
///
///

static int calendarWeek_DE(Date inputDate)
{
real a = trunc((14 - (mthOfYr(inputDate))) / 12);
real y = year(inputDate) + 4800 - a;
real m = (mthOfYr(inputDate)) + (12 * a) - 3;
real jd;
real d4;
real L;
real dl;
int calendarWeek;
;

jd = str2int(substr(date2str(inputDate, 123, 2, 2, 2, 2, 2), 1, 2)) +
trunc(((153 * m) + 2) / 5) + (365 * y) +
trunc(y / 4) - trunc(y / 100) + trunc (y / 400) - 32045;
d4 = (jd + 31741 - (jd mod 7)) mod 146097 mod 36524 mod 1461;
L = trunc(d4 / 1460);
dl = ((d4 - L) mod 365) + L;

calendarWeek = trunc(dl / 7) + 1;

return calendarWeek;
}



Источник: http://www.axaptapedia.com/CalendarWeek
__________________
Расскажите о новых и интересных блогах по Microsoft Dynamics, напишите личное сообщение администратору.
 

Похожие темы
Тема Автор Раздел Ответов Посл. сообщение
axaptapedia: Tutorial Password Blog bot DAX Blogs 1 22.05.2009 21:23
axcoder: PowerShell + Ax Blog bot DAX Blogs 1 09.01.2009 18:05
axaptapedia: Load Web Documents Blog bot DAX Blogs 1 03.01.2009 23:50
axcoder: AxPath is supported by axaptapedia Blog bot DAX Blogs 0 11.05.2007 10:00

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

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

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