Hello!In a Blue Prism object, I have the name of a Data Item stored as text in a collection. How can I retrieve the value of this Data Item dynamically based on the text (the name) stored in the collection?Thanks for answer!
Hello @Nandhakumar !The logic needs to read all inputs and outputs for the given action in the Business Object.This part is already in place — I can retrieve the parameters, including their names and direction, meaning whether they are inputs or outp...
Hello @Nandhakumar ,Yes, I have a logic that retrieves the inputs and outputs of a method. Based on the names of these parameters, I aim to obtain their values, if they exist.Best Regards,Ewelina
I have following code:string variableName = inputVariableName; // Example of a variable from the Data Table that stores the variable name, e.g. 'valid'// Attempting to get a field (variable) named e.g. 'valid' in the object of this classvar field = t...