Jared Hooper
Jared Hooper

Reputation: 881

Axapta 3.0 - X++ Conversion

I'm looking to do an operation in AX 3.0, and I'm neither familiar with this older X++ nor can I find comprehensive documentation.

I need to:

Now, how the heck do I do this?

Upvotes: 0

Views: 136

Answers (1)

10p
10p

Reputation: 6696

date dThen  = 1\1\2000;
date dNow   = systemDateGet();

return (dNow - dThen) * 24 * 60 * 60 + timeNow();

There could be a macro for 24 * 60 * 60 in Axapta 3.0, I don't remember.

Upvotes: 3

Related Questions