Index is out of range

Hello everyone,

I have such procees:
Open true pdf in IE - extract structured data - assign them to the variables - fill java app with them.

When run process on my PC, it works good, but when I run process on other PC, there is an error: “Index is out of range”, when trying to assign value to the variable.
I use the same PDF files.

Does anyone meet the same problem?
Thank you in advance!

this typically appears when you try to access an item outside the length of a collection. ie. when you have an array of length 4 and you try to access the 10’th element which does not exist.

what value are you trying to assign to the variable?