RE: ERROR: The Sales Invoice Header does not exist. Identification fields and values: No.=''
Hi jdrco ,
I see your code, there are bit changes you have to do, I also checked that you are trying to modify Sales Invoice header field in Report extension which system will not permit you to do that, Instead you have to find other way to accomplish you task. by the way there are bit changes in the code you have to do.
head.get(yoursalesinvheader."No.");
Head.calcfields("Remaining Amount");
if head."Remaining Amount = 0 then
head.paid := 'Paid'; // You can not modify Posted data.
Thanks.