Hello,
Thank you you for your answer. I understand now that I have to make extension on the process ReportAsFinished so then the class WhsWorkExecuteDisplayReportAsFinished.
But I have problems when making extension on the method buildReportAsFinished to add my field as following
container buildReportAsFinished(container _con,
WHSLicensePlateId _licensePlateId,
str _extraText,
boolean _outputLocationRequiresLicensePlate)
{
container ret = next buildReportAsFinished(_con,_licensePlateId,_extraText,_outputLocationRequiresLicensePlate);
ret += [this.buildControl(#RFLabel, #Scan, 'Scan a container', 1, '', #WHSRFUndefinedDataType, '', 0)];
return ret;
}
I hope you can help