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

Notifications

Announcements

No record found.

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

Responsible AI policies

As AI tools become more common, we’re introducing a Responsible AI Use…

Neeraj Kumar – Community Spotlight

We are honored to recognize Neeraj Kumar as our Community Spotlight honoree for…

Leaderboard > 🔒一 Microsoft Dynamics AX (Archived)

#1
Martin Dráb Profile Picture

Martin Dráb 4 Most Valuable Professional

#1
Priya_K Profile Picture

Priya_K 4

#3
MyDynamicsNAV Profile Picture

MyDynamicsNAV 2

Last 30 days Overall leaderboard

Featured topics

Product updates

Dynamics 365 release plans