Skip to main content

Notifications

Small and medium business | Business Central, N...
Suggested answer

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

Posted on by 10
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;
 
            }
        }
    }
 
}
  • Suggested answer
    gdrenteria Profile Picture
    gdrenteria 12,167 Most Valuable Professional on at
    Custom field "not invoiced qty" in Item ledge entry, subtract 2 columes in a table.
  • Suggested answer
    Saurav.Dhyani Profile Picture
    Saurav.Dhyani 17,965 Super User 2024 Season 2 on at
    Custom field "not invoiced qty" in Item ledge entry, subtract 2 columes in a table.
    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
     

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

December Spotlight Star - Muhammad Affan

Congratulations to a top community star!

Top 10 leaders for November!

Congratulations to our November super stars!

Community AMA December 12th

Join us as we continue to demystify the Dynamics 365 Contact Center

Leaderboard

#1
André Arnaud de Calavon Profile Picture

André Arnaud de Cal... 291,240 Super User 2024 Season 2

#2
Martin Dráb Profile Picture

Martin Dráb 230,149 Most Valuable Professional

#3
nmaenpaa Profile Picture

nmaenpaa 101,156

Leaderboard

Featured topics

Product updates

Dynamics 365 release plans