All the `run` APIs that currently accept `ut_varchar2_list` (specially for `suitepath`) should accept a comma or newline lists. This will greatly simplify calls from user-perspective as they don't need to remember to use `ut_varchar2_list`. So instead of calling: ```sql exec ut.run(ut_varchar2_list('first','another')); ``` They could call: ```sql exec ut.run('first,another'); ``` or: ```sql exec ut.run('first another'); ``` or: ```sql exec ut.run('first, another'); ``` This enchancement needs detrailed scoping: - which calls would be changed We could probably remove calls that use `ut_varchar2_list` in release 4, as it's a breaking change. We should indiate (Somehow) that those are **depreciated**