Infor Process Designer - File Away with Me


The FileAccess node allows you to interact with files on the server; either reading, writing, appending, checking, deleting, or listing the files available.

The Connection information (for the server) is setup in the Landmark Configuration settings. Depending upon whether you are on premise, single tenant or multi tenant, you may access the Landmark server (only) or the Lawson server.

When you Read from file, you are reading the file into memory and you would reference that data with a variable like FileAccess8200_outputData. You must specify the file path and name to be read (variables are permitted).

When you Write to file, you are writing data to a file on the server and must specify the file path and name to write to (variables are permitted). When writing, you must specify the Input data that contains the information you are writing. You can enter the data in this field or reference a variable which contains your data.

When you Write to file you are either creating a new file or overwriting an existing file.

When you Append to file, you are adding data to an existing file on the server. This mode is just like using Write to file except you are not overwriting the existing file.

When you Append to file and the file doesn't already exist, the system will create it for you.

Using Check file exists allows you to verify that a file exists on the server. You may want to check that the file exists before trying to read it in order to avoid an error.

You would use Delete file to delete an existing file on the server. If you Ftp a file onto the server before reading it (or Ftp it after writing it), you will want to delete it from the server once you're done with it.

Using List files allows you to return a comma separated listing of files within the file path you specify. You may use wildcards (*, ?) with partial file names as well to limit the files returned in your list.

Not just answers, providing solutions

Infor Process Designer - You've got Issues


You may notice these pesky error messages in the Process Issues listing or see the warnings on the properties of your nodes.


These signify that you need to take corrective action to eliminate potential issues. I say potential issues because there are two types of warnings. The red circle warnings are serious while the yellow triangle warnings are not.

We used to call these 'hard errors' and 'soft errors' and you can usually ignore the soft errors - in fact you may have a reason for them. The soft errors usually occur if you add an Assign node but don't use it to do anything - No assignments were made.

I've used the Assign node (and have seen others do the same, so don't judge me) as simple placeholders or as a connection point pass thru. If you added an Assign and meant to actually assign a value to a variable, this warning lets you know you may have an issue.

Hard errors, however, should be taken seriously. As shown above, you may have placed a node in your flow but didn't connect to it, or from it. This 'orphan' node could cause your flow to fail because it won't know where it should go next.

You may have missing values in your node (like a File name) that are required for it to function correctly.

You also might not have completed your Error Condition steps by setting it up to notify or log potential errors.

So, don't ignore the warning signs. They're included to let you know you've got issues.

Not just answers, providing solutions


Infor Process Designer - To Err is Human

'I know there's a proverb which says 'To err is human' but a human error is nothing to what a computer can do if it tries.' - Agatha Christie

From time to time an error will occur in the processing of your flow; for example, if you try to read a file that doesn't exist using a FileAccess you will get an error. What options do you have when that occurs?


Depending upon the type of node and possible error, you have three options in your flow.

1. If you determine that the error is critical to the operation of your flow, you can set it to Stop process and the flow will stop and report out as a Failed WorkUnit.
2. If the error isn't critical - the flow can still accomplish what it's designed to do - then you can set the error handling to Continue process. The flow will move forward in spite of the error and either Notify (send an email with the error) or create a Custom log entry on the WorkUnit.
3. The Go to error handler option allows you to add a new connection from your node to route for special handling. The Error Connection is represented with a red connection.

Regardless of the error handling option you can still set the node to either Notify or create a Custom log entry (or both).

Not just answers, providing solutions

Infor Process Designer - My Pal Trigger


The Trigger node allows you to kick off another flow by selecting either another Process or Service.


Select the Trigger Type - Process or Service
If Process, select the Process name or if Service, select the Service name
Enter the User ID to be tied to the WorkUnit (variables are permitted)
Enter the Work title (variables are permitted)

You can even select specific (or All) variables to pass from your current flow to the new one.


Unlike a SubProcess, when you use the Trigger, your current flow continues on and the new flow is treated as an independent process.

Not just answers, providing solutions

Infor Process Designer - I'll Wait for you

When you need to build a pause or delay within your flow, you can use the Wait node.


Set the length of time for the flow to wait by Days, Hours, Minutes or Seconds by either entering direct values or using a variable.


You can set it to Keep Workunit active but doing so will tie up the IPA Grid Node - keeping it active will prevent another WorkUnit from being able to process during this time - and I would advice against doing so unless your wait is for a short time frame.

WARNING - Non persistent variables will be dropped from memory during a Wait. 
Non persistent variables include variables updated using the JavaScript Expression Builder in an Assign node as well as any looping node (Lawson Query, Landmark Transaction, For Each). The record count within a looping node will forget the counter value and not remember where to pick back up once the wait is over.

Not just answers, providing solutions

Infor Process Designer - Your word is my SysCommand

The System Command node allows you to send Windows or Unix (depending upon your environment) commands to your operating system.


This is not allowed in multi-tenant environment.


The SysCommand requires the server connection to be defined on the IPA Configuration menu.


Not just answers, providing solutions