You don't need the quotes in the modify() statement, since ls_user is a string already.
I prefer to build the complete string first:
string ls_mod, ls_user
ls_user = get_user()
ls_mod = "t_1.text=" + ls_user
dw_1.modify(ls_mod)
You don't need the quotes in the modify() statement, since ls_user is a string already.
I prefer to build the complete string first:
string ls_mod, ls_user
ls_user = get_user()
ls_mod = "t_1.text=" + ls_user
dw_1.modify(ls_mod)