Sep 01, 2021 01:02 PM
Airtable forms are not sufficient for my client’s need. There are several complex editable PDFs which they need populated from Airtable bases, but the scripting app questioningly denies access to the DOM (which is at least documented), but also the BOM (not documented). I can successfully populate the PDFs, but I can’t do anything with the stream. It would be great if I could open a browser window and dump it there, but without BOM access that is not doable. Any ideas to get around this report generation miss that Airtable has?
Sep 02, 2021 04:37 PM
Different ways to do it:
Depending on what you´re looking for, integrating those tools may work for you.
Best
Sergio
https://devblocks.agency
If this reply fixed your problem, please mark it as a solution :white_check_mark:
Sep 02, 2021 08:00 PM
Welcome to the Airtable community!
It sounds like you are an experienced developer. As you’ve noticed, the Airtable scripting environment has many limitations.
In general, any output that cannot be displayed as text needs to be sent to a 3rd party service. Fortunately, you can connect to a wide variety of API from an Airtable script. The trick is finding an API that will accept the input you have, generate the output you desire, and work with the limitations required by Airtable, all for a price point you can afford.
For example, you could look for a service that will accept your stream and and return a url for a file. Then you can display a markdown link to the file in scripting app, or upload the file to an attachment field.
You can also look into creating a custom app. Custom apps have fewer limitations than scripting, although there still are significant limitations.
The problem with most services that create PDF files for Airtable (FormStack, Documint, etc) is that you must create the template within the third party service; you cannot start with an existing pdf file. A workaround is to convert the editable PDFs into images and create a new document with the images as backgrounds and layer text on top of the images. The pdf will not be “filled in” but it will have the appearance of being filled in to a human user.
Nov 24, 2021 11:04 AM
You are right. The only service I found which accepts fillable and PDFs return them as well is https://www.pdffiller.com/.
Nov 24, 2021 11:27 AM
Welcome to the Airtable community @Jaroslav_Vrba !
Do you have experience using pdffiller with Airtable scripting? If so, please share. The API pricing seems rather high—$500/month—unless I am missing something.
Nov 24, 2021 11:52 AM
No. I am using https://www.integromat.com/ to populate PDFfiller fields from Airtable.