I have a suitelet form for users to enter new cust...
# suitescript
a
I have a suitelet form for users to enter new customer info which is then emailed to an admin. i would like to redirect them back to their home dashboard after hitting submit, possible? I know I can redirect to a record, but that's not what I want to do.
b
Copy code
redirect.toTaskLink({
  id: "CARD_-29"
});
👍 1
a
this is suitescript 2.0, right? we're still on 1.0. sorry, should have specified.
b
Copy code
nlapiSetRedirectURL("TASKLINK", "CARD_-29")
same basic idea
a
ah! turns out to be so easy. thank you very much!