Skip to main content

Posts

Showing posts from April, 2012

What are the classes involved in Journal in MSD axapta,

 What are the classes involved in Journal Posting, Sales Order Invoice Posting, Purchase Order Invoice posting, 1) Journal Posting : LedgerJournalCheckPost class ‎2). Sales Order Posting : SalesFormLetter Class and SalesFormLetter_Invoice class 3). Purchase Order Posting : involPurchFormLetter,Purch​FormLetter_PurchOrder,Purc​hFormLetter_Receiptlist,Pu​rchFormLetter_PackingSlip and PurchFormLetter_Invoice classes are involved.

How to return Name of d Day in string in MSD axapta x++ ?

dayofmth is method  to return Day and dayname is method to show name of day in string. strfmt is string method to show any type of  variable in string format. To return Name of d Day in string ( Monday,Tuesday,Wednesday etc​) by passing Date as my parameter Value you can try this method or code in axapta x++. info(strfmt("Name of the Day - %1",dayname(dayOfMth(today​()))));