Workflow for old NG templates

Workflow for old NG templates

Workflow for old NG templates :

Warning
Please note - current versions of InterFormNG2 (3.x.x) do not support InterFormNG1 Templates anymore.

If you are converting your installation from InterFormNG into InterFormNG2, then you should notice, that the InterFormNG2 workflows are totally different than the InterFormNG workflow/rules.

The InterFormNG2 workflow works the same for both InterFormNG2 and InterFormNG templates, but customers that are converting an InterFormNG installation into InterFormNG2 should keep in mind, that the output formats (that are often set inside the InterFormNG template) are not used in InterFormNG2, so you need to setup a special workflow to handle InterFormNG templates, if you want the InterFormNG template to dynamically set the type of output and settings for the output.

 

The specifics to keep in mind, when it comes to implementing InterFormNG templates in InterFormNG2 are covered here.

 

If you want to merge an input XML file with an InterFormNG template (.itpl) and let the template decide all output settings, then you always first need to merge into the intermediate format with the workflow component: From ITPL to intermediate.

 

You can even combine the from ITPL to intermediate component with a generic workflow, that you can call to create any kind of output, that is selected in the InterFormNG template. This can e.g. be used, if the meta data key, mediaType is set in the InterFormNG template. The mediaType meta data key is not used in the InterFormNG2 workflow, but you can implement it yourself in a generic workflow like below.

Generic InterFormNG workflow :

When you want to use InterFormNG templates you can either use the standard workflow of InterFormNG2 e.g. the basic create components.

 

The limitation with these components is, that you need to know exactly what kind of output, that you want (e.g. pdf, print or email) and you also need to know all the parameters e.g. what printer to use, what the PDF file is to be called and the email receiver(s).

 

All of these parameters (meta data keys) can be set in InterFormNG templates, so in order to reduce the required changes in the InterFormNG templates to a minimum you can consider to build a generic sub-workflow (a workflow, that can be called by other workflows).

 

Below we will build a generic sub-workflow, that can be called after a merge with an InterFormNG template into the intermediate format.

 

The merge should be done with the workflow component: From ITPL to intermediates. Before you call the generic workflow you need to set all predefined variables (same as meta data keys in InterFormNG), that are needed.

 

First you create a new workflow with the input type, From other workflow and intermediate as the input payload.

 

The workflow below will branch out with a multicast workflow element to printcreate a PDF or email.

 

Remember to click the save icon on the upper right, to save any change of the workflow.

    

 

In this setup we assume, that your InterFormNG template as set a dynamic value for the user defined workflow variable, mediaType (which of course is a predefined meta data key in the InterFormNG template), so the generic workflow need execute multiple conditions to verify which of the outputs, that are requested (the mediaType could contain multiple outputs), so we insert the basic, special multicast component:

    NG2GenericNGWorkflow0002

 

Print condition

Now click the '+' icon to the right of the multicast component to add the first choice (condition) to verify, if the mediaType indicates, that a print output should be generated. Now the workflow looks like this:

    NG2GenericNGWorkflow0004

In this case we dont need the otherwise branch, so we can delete it:

    NG2GenericNGWorkflow0006

 

Now we can double click the when element above to insert a condition to verify if the output should be printed:

    

 

As the Xpath expression a condition has been inserted to verify if 'print' is found in the mediaType variable. If so, then we want to print. We click apply:

    NG2GenericNGWorkflow0009

 

To the right of the When:Print element we now want to insert a print workflow component in order to print the merged result. The print data stream (driver print, idp, pcl or zpl) is selected indirectly via the printer:

 

The printer must be selected by setting the predefined variable (or meta data key inside the InterFormNG template) before calling this workflow.

    

 

Click the marked, rightmost icon and then the magnifying glass to refer to built in variables:

    

 

Scroll down and select the predefined variable above: interform.destination.printer.printerName:

    

 

- and click apply.

 

PDF condition

Now we can add a new choice branch under the multicast to test, if a PDF file should be created in a similar condition:

    

 

For the PDF file we need to add two components: First to create a PDF file (in the payload of the workflow) and another component to output the PDF file to the file system:

 

The create PDF has no parameters as the input payload is intermediate (so no template is required), and the to file system component refers to the predefined variables:

    

 

Again the variables (or meta data keys in the InterFormNG template) must be set before calling the workflow.

 

The workflow now looks like this:

    NG2GenericNGWorkflow0015

 

Email condition

Now it gets more tricky. We need to build up the elements of the email as everything is to be dynamic. So these components are used:

  1. Set a condition/choice for the new branch in multicast.
  2. Set the name of the attachment.
  3. Create the PDF into the payload.
  4. Put the payload into the attachment.
  5. Create the email message text. Remember: RTF files are not supported and variables are referenced with a preceding $-sign: $variable in the email templates.
  6. Email details are to be set e.g. who is the receiver.
  7. Finally the email is to be sent via a mail server.

The details of each of the components are included below:

The condition:

    

 

Set name of attachment:

    

 

Create PDF to payload: (Notice, that there are no parameters as the input here is intermediate)

    

 

Payload to attachment:

    

 

Create email text: (Remember, that rtf files are not supported and variables must be referenced as $variable)

    

 

Email details:

    

 

To email server:

    

 

The workflow now looks like this:

    NG2GenericNGWorkflow0023



    • Related Articles

    • Support for old NG templates

      Please note - current versions of InterFormNG2 (3.x.x) do not support InterFormNG1 Templates anymore. Customers, that has a lot of existing NG templates (with extension .itpl, that have been made in InterFormNG), can use these templates in ...
    • Templates library

      The templates library contains the forms, that you want to merge your input data files (xml or spooled files) with. The forms can be both: 1.InterFormNG2 templates. These are files with the extension .ift. These templates can be edited with the ...
    • Mail templates library

      You probably want to configure the contents, when you send an email with InterFormNG2. In InterFormNG2 this can be defined as either an html file (which is recommended) or as an Apache Velocity Template (.vm), which is described below. Email template ...
    • ng:decrypt

      The built-in function, ng:decrypt is linked with the encryption functions: ng:encrypt and the workflow component, Set secure workflow variable. The function, ng:decrypt() can decrypt contents, that was previously encrypted with these functions. The ...
    • ng:resourceExist

      This function checks, if a resource in InterFormNG2 exists or not. The function returns a boolean: true or false. The ng:resourceExist Xpath function has this format: ng:resourceExist(resource,path) where: resource Resource is the type of resource in ...