web
You’re offline. This is a read only version of the page.
close
Skip to main content

Announcements

No record found.

News and Announcements icon
Community site session details

Community site session details

Session Id :
Microsoft Dynamics AX (Archived)

Table that Stores Item List Price

(0) ShareShare
ReportReport
Posted on by

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

I have the same question (0)
  • Suggested answer
    Fredrik Sætre Profile Picture
    12,644 on at

    Isn't that InventTableModule(Sales) .Price?

  • Verified answer
    Fredrik Sætre Profile Picture
    12,644 on at

    Price for Sales, Purchase and Invent is in the same table.

  • Verified answer
    Chaitanya Golla Profile Picture
    17,225 on at

    Hi,

    Use the following job to get the default inventory, purchase, and sales price of a product.
    Table: InventTableModule
    Description: 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 inventTable
    where inventTable.ItemId == "XYZ"
    join ecoResProduct
    where ecoResProduct.RecId == inventTable.Product
    join inventTableModule
    where 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

  • JoeSeroski Profile Picture
    on at

    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.

Helpful resources

Quick Links

Introducing the 2026 Season 1 community Super Users

Congratulations to our 2026 Super Stars!

Meet the Microsoft Dynamics 365 Contact Center Champions

We are thrilled to have these Champions in our Community!

Congratulations to the March Top 10 Community Leaders

These are the community rock stars!

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
CP04-islander Profile Picture

CP04-islander 39

#2
Michel ROY Profile Picture

Michel ROY 14

#3
imran ul haq Profile Picture

imran ul haq 8

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans