As others noted, standard functionality is to return to where you were when the process began. For this reason, I'll sometimes display a confirmation form within the same edit process via chain from the Edit form, with navigation options such as below. Note when the users click the Home Page link, the task for the process will remain in their queue so I typically implement something like a 15-30 minute orphan timer.
{
a!richTextDisplayField(
align: "CENTER",
value: {
char(13),
a!richTextItem(
text: "Your form has been submitted!",
size: "LARGE",
style: "STRONG"
),
char(13),
char(13),
}
),
a!columnsLayout(
columns: {
a!columnLayout(),
a!columnLayout(
contents: {
a!cardLayout(
style: "ACCENT",
link: a!submitLink( /* Close current process which will return to the start action */
value: "NEW",
),
contents: {
a!richTextDisplayField(
align: "CENTER",
value: {
a!richTextIcon(
icon: "plus",
size: "LARGE"
),
char(13),
a!richTextItem(
text: "Submit a new request",
size: "MEDIUM",
style: "STRONG"
),
char(13),
char(13),
}
)
}
)
}
),
a!columnLayout(
contents: {
a!cardLayout(
style: "ACCENT",
link: {},/* a!safelink() to the app home page */
contents: {
a!richTextDisplayField(
align: "CENTER",
value: {
a!richTextIcon(
icon: "share",
size: "LARGE"
),
char(13),
a!richTextItem(
text: "Process Home Page",
size: "MEDIUM",
style: "STRONG"
),
char(13),
char(13),
}
)
}
)
}
),
a!columnLayout()
}
),
a!richTextDisplayField(
align: "CENTER",
value: {
char(13),
a!richTextItem(
text: a!richTextItem(
text: "Thank you for using ",
style: "EMPHASIS"
),
size: "MEDIUM",
style: "STRONG",
color: "SECONDARY"
),
a!richTextItem(
text: a!richTextItem(
text: "[this application]",
style: "EMPHASIS"
),
size: "MEDIUM",
style: "STRONG",
color: "ACCENT"
)
}
)
}