31.03.2010, 11:14 | #1 |
Axapta Retail User
|
Дата. время
Простите за избитый вопрос, как записать Дата+время в формате 20103103111500 ?
|
|
31.03.2010, 11:22 | #2 |
Читатель
|
X++: strRem(date2str(today(), 312, 2, 2, 2, 2, 4) + time2str(timenow(), 2, 1), ".") Последний раз редактировалось b_nosoff; 31.03.2010 в 11:33. |
|
31.03.2010, 11:47 | #3 |
Участник
|
Если вопрос про новый тип данных utcDateTime, появившийся в AX2009, то в хелпе всё есть:
Цитата:
X++ Literals for utcdatetime
The format for a utcdatetime literal is yyyy-mm-ddThh:mm:ss, with the uppercase T being a required literal character. This format is understood by X++ without quotes, as shown in these examples: utcdatetime myUtc2 = 1988-07-20T13:34:45; int iDay = DateTimeUtil ::day(1988-07-20T13:34:45) This same format is expected as a quoted string parameter into the DateTimeUtil :: parse method: utcdatetime myUtc4 = DateTimeUtil :: parse("1988-07-20T13:34:45"); |
|