Note: This was originally posted by an inactive account. Content was preserved by moving under an admin account.
Originally posted by: Tim MeagherThis is an auto-generated error from Python nodes within the LAE.
Therefore, this error could be due to any of a number of problems if you have written your own Python node.
However, the most common cause of this specific auto-generated error code is when using a Static Data node, and the data within a line of the "StaticData" parameter in the node does not match the metadata specified.
The error should inform you which line in the StaticData node has the error, how many fields it is expecting to see (i.e. what the metadata describes) and how many fields it has seen on that line.
Bear in mind that the StaticData parameter needs to be comma separated.
If any fields contain a comma, then the field needs to be surrounded with double quote (") characters - for example the following is acceptable:
firstField:string,secondField:string
First,"Second,Field,Value"
If a field value needs to contain a quote, then the entire field needs to be quoted, and the quote character itself needs to be preceeded by an additional quote character
For example if you wanted to have two fields, one with the value:
And the other with the value:
Then you could do this using the following:
firstField:string,secondField:string
"""Surrounded in Quotes""","Just one ("") quote"