Hello!
We've built a static reporting form to check if fees have been paid and documents signed in another process. The entire form is effectively a read-only table populated with SQL lookups. When the client clicks the submit button, this process is supposed to save a copy of this form to the repository, and that's it. The trouble is that the form will not save all of the data in the table. The first column seems to be fine, and the first row of the last column is alright, but nothing else will remain in the table. It also doesn't terminate or fail in any way. It simply... forgets the data.
We've checked the variables in the instance monitoring, and found that the data doesn't even make it as far as the second task.
Is there any way we can ensure that all the data in this table remains in the table so it can be saved to the repository?
Thanks in advance!