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 :
Small and medium business | Business Central, N...
Suggested Answer

Custom field "not invoiced qty" in Item ledge entry, subtract 2 columes in a table.

(0) ShareShare
ReportReport
Posted on by 14
Hi Expert.  I am new for AL.  I have a requirment to create a customs field /Qty.Shipped Not Invoiced/ in Item Ledge Entries.   Seems very simple.  /Qty. Shipped Not Invoiced/ = Quantity- “Invoiced Quantity”.  I already created new field /Qty. Shipped Not Invoiced/,  I run the extension, but calculation is not working.  The column only show “0”.  I tried many times but all failed.
Can I have any help on this code?  Thanks

 
tableextension 98932 /QTYNotInvoiced/ extends /Item Ledger Entry/
{
    fields
    {
        field(98932; /QtyShippedNotInvoiced/; Decimal)
        {
            Caption = 'Qty. Shipped Not Invoiced';
            DecimalPlaces = 0;
            Editable = false;
        }
    }
    trigger OnAfterInsert()
    var
        ILE: Record /Item Ledger Entry/;
    begin
 
        ILE.CalcFields(Quantity);
        ILE.CalcFields(/Invoiced Quantity/);
 
        QtyShippedNotInvoiced := Quantity - /Invoiced Quantity/;
 
    end;
 
}
pageextension 98932 /QtyShippedNotInvoiced/ extends /Item Ledger Entries/
{
    layout
    {
        addafter(/Invoiced Quantity/)
        {
            field(QtyShippedNotInvoiced; Rec.QtyShippedNotInvoiced)
            {
                ApplicationArea = all;
                Caption = 'Qty. Shipped Not Invoiced';
                DecimalPlaces = 0;
                Visible = true;
 
            }
        }
    }
 
}
I have the same question (0)
  • Suggested answer
    Saurav.Dhyani Profile Picture
    14,419 User Group Leader on at
    Hi,
     
    You should write code in correct place.
     
    Item ledger entries are always created via journal and Item Journal lines are posted via codeunit 22 "Item Jnl.-Post Line".
     
    Look for a function - InsertItemLedgEntry. 
     
    This event is what you can subscribe to achieve your requirement - OnBeforeInsertItemLedgEntry
     
    Regards,
    Saurav Dhyani
     
  • Suggested answer
    Gerardo Rentería García Profile Picture
    26,844 Most Valuable Professional on at

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 April Top 10 Community Leaders

These are the community rock stars!

Leaderboard > Small and medium business | Business Central, NAV, RMS

#1
OussamaSabbouh Profile Picture

OussamaSabbouh 2,216 Super User 2026 Season 1

#2
YUN ZHU Profile Picture

YUN ZHU 1,471 Super User 2026 Season 1

#3
AndrewThomas81 Profile Picture

AndrewThomas81 1,369

Last 30 days Overall leaderboard

Featured topics

Microsoft Training Manuals

Product updates

Dynamics 365 release plans