Hi, because of the volume of records I need to do this with javascript (using the External Script plugin) and have seen some examples on the user community, (see below) however not sure how to use the example below for my document.
// Open Current Job file as the PDF to modify
var PDF1 = Watch.GetPDFEditObject();
PDF1.Open(Watch.GetJobFileName(),false);
// Open Second PDF file containing the pages to add to the first one
var PDF2 = Watch.GetPDFEditObject();
PDF2.Open(“D:\KPM-\ExampleJobs[customer path]\Invoice_ReverseSideText_Apr2022_INSERT.pdf”,false);
// Insert the pages: start from the end so as not to screw up the page indexes
// The PDF library uses 0-based indexing, i.e. the first page in a PDF
// is Page 0
PDF1.Pages().InsertFrom2(PDF2.Pages(),0,1,1);
PDF1.Save(false);
PDF1.Close();
PDF2.Close();