The have a two records in a table called Bill Info, I have designed a report to the table and need to save each record into pdf file in a specific folder.
CustBill.RESET;
CustBill.SETFILTER(CustBill."Customer No.",'%1',Customers."No.");
IF CustBill.FIND('-') THEN
Customers.GET(Customers."No.");
IF Customers.FIND('-')THEN BEGIN
REPEAT
CustNumber:= Customers."No.";
tofile := '.pdf';
Filename := 'C:\reports\'+CustNumber+tofile;
REPORT.SAVEASPDF(50050, Filename,Runrpt);
UNTIL CustBill.NEXT=0;
END;
Your code is a mess. Here I fixed it for you.
Pay attention to this line
Depending on dataitems in report you may have to use
CustLocal
orCustBill
variable as last parameter. It will be used as filterset for your report.And one more thing. As MSDN says:
So don't look for your file on local machine where client is running.
Any other problems urged you to post the question twice?