If you want to store a list object in a string field, you will need to serialize it.
You could use the Python repr() function for this.
out1.Issue_Owner = repr(dropdown_options)
Then when you need that value later on in Python code, use the eval() function:
dropdown_options = eval(in1.Issue_Owner)
And I've found the json library's json.dumps() and json.loads() is much faster than the repr(), eval() combination.
Ernest
------------------------------
Ernest Jones
Precisely Software Inc.
PEARL RIVER NY
------------------------------