Notifications
Announcements
No record found.
Hi I'm developing an activity that I need to develop the following rule: Check the last highest unit purchase value of the item entered in the current month. (VendInvoiceTrans).PurchPrice of the Item (VendInvoicetrans).ItemId , if there is no purchase record in the current month, check the previous month and so on. How could I do this on Ax 2012?
Hi Euler,
Do you need the last or highest purchase price? The current month is per calendar month or a 30 day running period?
Curiosity: What is the purpose for this requirement?
The question sounded very familiar. It's like I answered once .In the other question, account was involved, so I included the header in the answer.If it's just the item, the process is easier. You can find the last record of this item with a simple select, instead of looking for the last record month by month. After you find the last record, what you need to do is to apply a one-month range with the date(month) information of that record and find the maximum price.
ItemId _itemId = ""; VendInvoiceTrans vendInvoiceTrans; FromDate fromDate; ToDate toDate; ; select firstOnly vendInvoiceTrans order by InvoiceDate Desc where vendInvoiceTrans.ItemId == _itemId; fromDate = mkDate(1,mthofyr(vendInvoiceTrans.InvoiceDate),year(vendInvoiceTrans.InvoiceDate)); toDate = endMth(vendInvoiceTrans.InvoiceDate); select maxof(PurchPrice) from vendInvoiceTrans where vendInvoiceTrans.InvoiceDate >= fromDate && vendInvoiceTrans.InvoiceDate <= toDate && vendInvoiceTrans.ItemId == _itemId; info(strFmt("%1",vendInvoiceTrans.PurchPrice));
Ergun ahin, Thank you very much, your answer is exactly what I needed, it worked.
I'm glad we were able to resolve your issue. You can close the topic by verify the answer.
Under review
Thank you for your reply! To ensure a great experience for everyone, your content is awaiting approval by our Community Managers. Please check back later.
As AI tools become more common, we’re introducing a Responsible AI Use…
We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Martin Dráb 565 Most Valuable Professional
André Arnaud de Cal... 450 Super User 2025 Season 2
Sohaib Cheema 250 User Group Leader