Skip to main content

Posts

Showing posts with the label How to get first day date of month in axapta

How to get first day date of month in MSD axapta

If you want to get first date of month then this is first simple or forceful method to get it. You can try following code in job. TransDate AnyDate=systemDateget(); TransDate FirstdateOfMth; ; FirstdateOfMth=mkdate(1,mthofyr(AnyDate),year(AnyDate)); info(date2str(FirstdateOfMth,123,2,2,2,2,4)); //This is second method to get first day of month. DateStartMth is standard global method to get first //date of month. TransDate AnyDate=today(); TransDate FirstdateOfMth; ; FirstdateOfMth=DateStartMth(AnyDate); info(date2str(FirstdateOfMth,123,2,2,2,2,4)); Systemdateget and today method will give you current system date.