I feel like I'm having a case of the "Forgetful Fr...
# suiteflow
n
I feel like I'm having a case of the "Forgetful Fridays" but I need a Workflow that when the user clicks a button, it puts the record in Edit mode to they fill out a series of required fields. Just can trigger that edit mode...
e
Why a custom Edit button? 🤔
Anyway, maybe a script to redirect the same
url
+
&e=T
would do the trick
n
It's to drive a process. Click this button, go into edit mode, hidden fields appear due to process being invoked, and are required before save.
Trying to avoid a script b/c my predecessor has already riddled this custom record with too many. hahah At this point, I'm just maintaining until I have the time to refactor. This custom record drive almost all the renewal actions, so it's really important to the business ops.
I could have sworn I had done this before...but maybe im going insane
m
To do this create a custom field on your record (same record type as the record). Upon create set the value of this field to "Current Record". using a workflow Then add your button Transition to a new state upon button click On Entry into the new state use the Go To Record Action. Set your record type, then choose the custom field you made above as your field value in the Go to record action. (as set Open In Edit Mode)
👍 1
n
Thank you @MGBC