International Distributors
This article demonstrates how to use the FactoryPMI Reporting Plugin to dynamically fill an existing PDF report. For this example, we will fill in a 1040EZ Income Tax Return with data from a MySQL database. Background
Accounting
Contacts
Income
SELECT C.* FROM Contacts C ORDER BY C.ID;
SELECT I.* FROM Income I ORDER BY I.ContactID;
SELECT C.*, I.* FROM Contacts C, Income I WHERE C.ID = I.ContactID AND C.ID = 1;
Report Viewer
Data
Keys
Firstname