Wednesday, November 22, 2017

HOW TO GET DAY OF THE WEEK IN MICROSOFT DYNAMICS AX

HOW TO GET DAY OF THE WEEK 
IN MICROSOFT DYNAMICS AX 
int sleep(int _duration)
Pauses the execution of the current thread for the specified number of milliseconds
static void sleepExample(Args _arg)
{
    int seconds = 10;
    int i;
    ;
    i = sleep(seconds*1000);  
    print "job slept for " + int2str(i/1000) + " seconds";
    pause;
}

No comments:

Post a Comment

Related Posts Plugin for WordPress, Blogger...