The result of concatenate action with base64 conversion is too long and a memory error is returned.
How is it possible de put the value to a text area in a screen ?
Value length is 3861780 caracters.
The result of concatenate action with base64 conversion is too long and a memory error is returned.
How is it possible de put the value to a text area in a screen ?
Value length is 3861780 caracters.
@JeanChristopheD17042937 Am afraid that you have to use an unexposed properties(BLOB) to do this and not an exposed one as that has limited length shortcomings generally ( 64 or 128 chars).
@JeanChristopheD17042937 There is a limit to how large a string can be inside an automation. If you exceed that limit, then it will be concatenated or throw an exception. If I recall when I had encountered this before, I used a script to gather the data and then broke it into pieces within the script and returned an array of the pieces. I could then use those in the automation to do what I needed. If you wanted to pass the entire value somewhere, you would need to pass the control that you wanted to pass it to into the script and pass it inside the script.