Batch processing in AEM | Community
Skip to main content
Level 3
August 15, 2017
Solved

Batch processing in AEM

  • August 15, 2017
  • 7 replies
  • 4223 views

I am looking to see if we can do batch processing (printing and file) of forms using Output.  In any given batch we can have multiple envelopes with multiple forms in each envelope.  AEM 6.2 Forms Help | Output Service mentions the generatePDFOutputBatch and generatePrintedOutputBatch operations of the Output service but I do not see those operations in Workbench services or in the wsdl.  The methods that I do see all take a single form as one of the input parameters?  Am I missing something or is the documentation wrong?  Is there a way to process multiple forms in a batch into a single pdf or print file?

This post is no longer active and is closed to new replies. Need help? Start a new post to ask your question.
Best answer by GPhillips58

So, the documentation is incorrect (something I am finding a lot of with AEM), generatePDFOutputBatch and generatePrintedOutputBatch do not exist as operations of the Output service.  Any batch processing has to be custom built.

7 replies

GPhillips58AuthorAccepted solution
Level 3
September 5, 2017

So, the documentation is incorrect (something I am finding a lot of with AEM), generatePDFOutputBatch and generatePrintedOutputBatch do not exist as operations of the Output service.  Any batch processing has to be custom built.

July 25, 2019

Hi,

1) is on demand batch processing available in AEM Forms ?

For example , if i have a input file with 1000s of input entires and i need to generate pdf ouputs with multiple envelops & forms vice versa.

Adobe Employee
July 25, 2019

One large xml with multiple records

each record will be merged with xdp to generate pdf file?

July 26, 2019

yes thats correct.

i have one/multiple large xml with multiple records of multiple customers.

so when i execute the xml file, respective templates should be selected and need to get pdf files for all the customers where the rules matches.

July 26, 2019

for example,

if i have customer a, customer b, with records such as name, phone, email etc for both.

i have developed 2 forms. if rule 1 matches then form1 should be picked up and if rule 1 doesnt match then form2 should be picked up.

my assumption is xml can be run automatically thru watch folders and once xml is picked up ,

i will have to get 2 pdf outputs, 1 with custa (in form1 since it matched rule1) and 2nd pdf with custb (form2 since rule 1 didnt match)

is this possible ?

Question 2, if this is possible, then i believe we will be able to send the pdfs to customer as mail or prints.

Mayank_Gandhi
Adobe Employee
Adobe Employee
July 26, 2019

When you send a file to watch folder this calls a workflow. You should check the payload i.e input XML for the value and have two different path for the output service to process the data. These paths would have different xdp and can be merged with XML to process the final results. Consider it like if-else .

Adobe Employee
July 26, 2019

Everything is possible

you will Have to write some custom code

if you can post a sample of xml I can give you paeudo code