0

I have designed a report and i would like to save each report in pdf into a specifi folder. How do i achieve this using a codeunit or report?

Number:=50050;
 CustBill.RESET;
IF CustBill.FIND('-') THEN
tofile := DELCHR(CustBill."Customer No." +    FORMAT(CustBill.Date),'=','/\:.,') + '.pdf';
Filename := 'D:\Bills\'+'tofile';
REPORT.SAVEASPDF(Number, Filename,Runrpt)

1 Answers1

1

This statement IF CustBill.FIND('-') THEN if used without begin and end only related to the single next line of code. In your case this one tofile := DELCHR(CustBill."Customer No." + FORMAT(CustBill.Date),'=','/\:.,') + '.pdf'; This will probably cause this line to newer be executed.

Mak Sim
  • 2,148
  • 19
  • 30