Thanks Will,
Let suppose , production order created and started with qty 10 and I wanna do report as finish qty 5 using code so I am using same piece of code (mentioned in above link) therefore I am passing qty as below:
prodParmreportFinished.QtyGood = 5;
However, when "ProdMultiReportFinished.run()" run , it will initialize the prodParmreportFinished buffer again inside run() method which make qty same as Started qty(10) so I was wondering that if there is any way to do partial report as finished through code?
I hope it clears now.