Edit Form Screen Action

Hi,I am using the Show edit form screen action for the button Registration ,once they submit the form it stores in user table. but I want coach registration details to store in coach registration table
I should set action such as add this row to coachregistration table. but I couldn’t find any options to set that action

You should be able to do that with an onSubmit action on your edit screen. But, you might want to be careful with this. What happens if the record is edited twice? Presumably you want two rows added? If that’s true, you would need to use a custom action with a conditional check that skips the new row creation if one already exists.

1 Like

@Darren_Murphy Thank you!