Announcements
No record found.
What table(s) stores item list price in Dynamics AX 2012 R3? I need list price before any discounts (e.g. before line, group, table).
*This post is locked for comments
Isn't that InventTableModule(Sales) .Price?
Price for Sales, Purchase and Invent is in the same table.
Hi,
Use the following job to get the default inventory, purchase, and sales price of a product.Table: InventTableModuleDescription: The InventTableModule table contains information about purchase, sales, and inventory specific settings for items.
Same information is available on the tabs Purchase, Sell and Manage inventory on Release product details form.
static void InventTableModule(Args _args){InventTableModule inventTableModule;InventTable inventTable;EcoResProduct ecoResProduct; while select inventTablewhere inventTable.ItemId == "XYZ"join ecoResProductwhere ecoResProduct.RecId == inventTable.Product join inventTableModulewhere inventTableModule.ItemId == inventTable.ItemId{if (inventTableModule.ModuleType == ModuleInventPurchSales::Invent){ info(strFmt("Default Invent price: %1, unit: %2", inventTableModule.Price, inventTableModule.PriceUnit)); } if (inventTableModule.ModuleType == ModuleInventPurchSales::Purch){info(strFmt("Default purch price: %1, unit: %2", inventTableModule.Price, inventTableModule.PriceUnit)); } if (inventTableModule.ModuleType == ModuleInventPurchSales::Sales){info(strFmt("Default sales price: %1, unit: %2", inventTableModule.Price, inventTableModule.PriceUnit)); }}}
Hope this information helps you.
If you feel your issue is resolved, please mark the answer as verified.
Thanks,
Chaitanya Golla
Is there a different table that stores list price history?
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.
Congratulations to our 2026 Super Stars!
We are thrilled to have these Champions in our Community!
These are the community rock stars!
Stay up to date on forum activity by subscribing.
Basit 1
GL-01081504-0 1
Roya 1