Hello ,
How can i take from this array a sigle data , for example i wanna show only Document1 , Document2 , Document3 .
without [,{,"nombredoc",:
Thx.
Discussion posts and replies are publicly visible
The screenshot you posted looks like a JSON string, in which case you would want to use a!fromJson() to translate the JSON into a dictionary, and then you could simply access the document names using the dot property "nombredoc".
a!localVariables( local!jsonDictionary: a!fromJson(ri!yourtext), local!jsonDictionary.nombredoc )