Hello,
I have extended standard class SalesPackingSlipDP for the stadard packing slip reports so that I fill up my custom table with some records. Created transactionID for my custom table is the same as for standard packing slip report table, for example SalesPackingSlipDetailsTmp, because I set transactionconnection the same way as it's done in the standard, for example method SalesPackingSlipDP.initializeSalesPackingSlipLine()
When I print packing slip report everything works fine and my table is filled up correctly and I can show records from my custom table in the report but when I print proforma standard code erases records from my ctusom table.
This happens here
standard class FormLetterService method processJournal
line 1854 commit statement.
before running line 1854 I have all neded records in custom table and in the standard tables - SalesPackingSlipHeaderTmp, SalesPackingSlipDetailsTmp
after completing line 1854 I still have records in the standard tables SalesPackingSlipHeaderTmp, SalesPackingSlipDetailsTmp but all records from my custom table are deleted. No error, no exception, nothing.
Is there anyway I can somehow debug this?
Thank you.