Custom Job: Clear Digital Signatures in PDF

Here are the steps to create a custom job in Qoppa PAS that clears any signatures on the document. Make sure to change the output file path below. 1. Create a custom job through Qoppa Job Creator Wizard and open the job properties to edit the code section. 2. Replace the import section with the […]

Read More

Automate text field extraction from PDF into an XML file

Use this Custom Job as an easy solution to extract text fields from incoming PDF documents (such as invoices, statements, financial applications, medical records, etc….) and save them in a structured format, for instance an XML file. Note: This custom job will work with any PDF document (assuming the document contains text, otherwise the PDF […]

Read More

Split a PDF and email based on text contained in the PDF

This is an sample of a CustomProcess for Qoppa’s PDF Automation Server. This job takes in a PDF document, splits it into multiple 2 page PDFs, identifies text strings based on their location on the first page of each PDF and finally email the PDF to various addresses depending on the value of the text […]

Read More

Route a PDF document based on file name

Here is a sample implementation of a CustomProcess for PDF Automation Server that routes PDF documents based on their file name. If the file name contains the word ‘test’, the document is send via email. Otherwise, the document is saved to an output folder. import java.io.File; import java.io.FileOutputStream; import java.io.IOException; import java.util.logging.Level;   import com.qoppa.pas.api.CustomProcess; […]

Read More

How to implement your own PDF workflow using custom processes

With PDF Automation Server v2016R1, customers are no longer limited by the predefined jobs available upon installation. Customers can create their own custom job and define their own workflow with all the flexibility provided by Java programming language. Custom jobs also give access to all the advanced PDF functions available in Qoppa’s jPDFProcess PDF library […]

Read More