Re: [development-axapta] How to Call a job from another Job

2006-01-24 Thread wb
Hi axpdev, You can do like this job static void wb_testJob(Args _args) { TreeNodetreeNode; ; treeNode = treeNode::findNode('Jobs\\YourSuperJob'); treeNode.AOTrun(); } regards, wb 2006/1/25, axpdev <[EMAIL PROTECTED]>: > > Hi, > > How to Call

Re: [development-axapta] "sticky" params with macro

2005-09-21 Thread wb
hi I don't repeat your situation. Can u run this job? static void Job8(Args _args) {     str text = "testtext", d = "232323";     #localmacro.txtstr2     #ifnot.empty(%1)    info( "The text was:" + %1);     #endif     #if.empty(%1)    info("No text");     #endif     #endmacro     ;   

Re: [development-axapta] Enterprise Portal error. Please HELP!

2005-02-16 Thread wb
Hi Ariadna > > I´m using Windows Server 2003 and IIS 6.0, I heard that there is a > hotfix or someting for this specific issue. Anyone knows how to fix > it? http://support.microsoft.com/defaul...kb;en-us;839003 http://www.microsoft.com/BusinessSo...erver_2003.aspx best regards, Valeriy

Re: [development-axapta] wkofyear

2005-02-04 Thread wb
Hello Alfonso, Hope this help you: "Under the ISO standard, a week always begins on a Monday, and ends on a Sunday. The first week of a year is that week which contains the first Thursday of the year, or, equivalently, contains Jan-4. While this provides some standardization, it can lead to

Re: [development-axapta] Date/Time of last login

2005-02-02 Thread wb
Hello Daniel static void ew_lastLogin(Args _args) {     SysUserLog userLog;     ;     select userLog     order by logoutDate desc, logoutTime desc     where userLog.UserId == curUserId()    && userLog.TerminatedOk == true;     info(strfmt('%1 %2', userLog.createdDate, time2st