Anurag: remove following line from code. You will be able to select name as well from list.
Bug_Fields("BG_USER_10").IsReadOnly = True
2nd thing: when you create the field select lookup list instead of string. And then below select the list you have created. This solution is if you want to keep both fields, username as well fullname.
If you just want one field. Better would be. Hide the username field from workflow. By using following code in BUG_new and BUG_Moveto
Bug_Fields("BG_Responsible").IsVisible = False.
And show here your customized field with your full name list as above.
Or if you still want to change the list, instead of UserList, select lookup list and from list below. Select your customized list. But I don't think that is advisable from functionality point of view. :)
Try all above three according to your requirement and Let me know if you have any questions further.
Bug_Fields("BG_USER_10").IsReadOnly = True
2nd thing: when you create the field select lookup list instead of string. And then below select the list you have created. This solution is if you want to keep both fields, username as well fullname.
If you just want one field. Better would be. Hide the username field from workflow. By using following code in BUG_new and BUG_Moveto
Bug_Fields("BG_Responsible").IsVisible = False.
And show here your customized field with your full name list as above.
Or if you still want to change the list, instead of UserList, select lookup list and from list below. Select your customized list. But I don't think that is advisable from functionality point of view. :)
Try all above three according to your requirement and Let me know if you have any questions further.