I have recently modified the default report 207 Sales Invoice and created a custom report. One request I had, was to display Shipment information on this invoice for each shipment that the current invoice covers. Particularly I needed to show the following values:
- Shipment No. from the Delivery Note
- Quantity of the Shipment
The standard report only shows the posted shipment date and the quantity and that only for one shipment (I believe its the last one). It does not show the "Shipment No.".
When making the required changes I had several problems and it was difficult to find any information about the findPostedShipmentDate()
function, so I have decided to post my solution here.
The question would be:
- How can I show multiple shipments on the sales invoice?
- How can I show the "Shipmente No." and the individual quantities or each shipment?
In the function
"Sales Invoice Line"::OnAfterGetRecord()
the functionfindPostedShipmentDate()
is called. This function performs several checks to find the posting date and if necessary calls the functionGenerateBufferFromValueEntry()
which fills the table "SalesShipmentBuffer" which temporary stores all the shipment information for the current "Sales Invoice Line" record:Afterwards it performs several checks on the buffer table and deletes the entries again (more on this later).
In the
GenerateBufferFromValueEntry
the following happens. The actual shipment information is stored in theItemLedgerEntry
(32) table, in order to find the correct rows, theValueEntry
(5802) table is used, which contains the right key (ValueEntry."Item Ledger Entry No."
).Additionally to the existing range filters I needed to add one line to limit the range to the
Item No.
and I had to remove the range filter for theEntry No.
. I also modified the functionAddBufferEntry
to additionally take theItemLedgerEntry."Document No."
which contains theShipment No.
from the delivery note. Here is the complete code:In the
FindPostedShipmentDate
function I also deleted the first couple of lines to prevent the function from exiting before theSalesShipmentBuffer
had been filled:In the last part of
FindPostedShipmentDate
the records ofSalesShipmentBuffer
are deleted again, which might seem a bit strange at first (it did to me). The reason is that even after theDELETE
andDELETEALL
functions are called, the record variable retains the values that were stored in the record before calling these functions. So the result is that theSalesShipmentBuffer
tables is cleared, such that its empty for the next run of thefindPostedShipmentDate()
function, but the values can still be used in the report. The other confusing part is that actually does a very simple thing which is made to look very complicated. If the buffer contains only one line it deletes the line, otherwise if it contains more than one line it first calculates the sum of all quantity fields and then deletes all lines.Anyway, I only had to make one change, which was removing the following line since the
Document No.
field now contains the Shipment No. and not the Invoice No.Here is the remaining code:
That's it. Now I just had to modify the DataItem source entries to show the necessary fields on the report. The changes I had to make are actually not so many, but the code is not documented at all and I could not find much information when I googled for this problem or the functions involved. So I hope my post is helpful, in case someone has a similar problem than I had.
On a side not, I do not understand why the above code segment is written in such a wired why, I belive (though I have not verified this), that it could be simplified into the following code, which is much more readable. Please leave comments if you feel that my analysis is wrong.