For some reason, i can’t find a category to report an issue, and i’m not sure if this is truly an issue or not.
I have a property in a custom data object class, that the values you set come from an Enum list. I was amped to see that Multi-Assign activity. In my instance, I attempted to perform a multi-assign with one of the values to assign as that enum val, so an example, i have a custom class called AccessRequest (named ioAccessRequest), and I’m attempting to assign a Passed value from the AccessRequestStatuses enum list:
ioAccessRequest.Status = AccessRequestStatuses.Passed
I had this code in my library, to which i published it, and downloaded into a project i was working on. When i did that, i received the following error:
"The private implementation of activity “1.2: Test (my library activity name)” has the following validation error: ‘Value’ argument is required in assign operation number ‘1’. the message repeats itself. This error message is thrown when i drag the Test activity from my library into my project.
If i replace the multi-assign with the plain old assign activity, it works fine. I’ve looked through the documentation of the Multi-Assign activity, and there is nothing specifying special restrictions. Figured it may be an issue. Please note, this only occurs when a multi assign is within a library, as far as i can tell.