Save UI values and bring it back when user need that again using process model ,something similar to save as draft for save button

Hi Appian Team,

We have a functionality to save the data from the interface to the database where we are not submitting it to the parent table, but a temporary table or cdt and use the same process model as the submit and add the nodes for temporarily saving feature like save as draft.

Basically customized "Save as draft functionality". Can anyone help us to implement this functionality , if you have come across similar features in any of your application.

Thanks

Sunu Sam

  Discussion posts and replies are publicly visible

Parents
  • One option might be to use the externalize() and internalize() functions on your data. This would allow you to store your data from any CDT in a single text column in a database. You'd need to stash a key in order to retrieve the correct stored externalized data, and you'd need to make sure the table column definition was big enough to hold the longest possible value.

Reply
  • One option might be to use the externalize() and internalize() functions on your data. This would allow you to store your data from any CDT in a single text column in a database. You'd need to stash a key in order to retrieve the correct stored externalized data, and you'd need to make sure the table column definition was big enough to hold the longest possible value.

Children