How to write to data store from Start Node

Hello,

I have a from and I have it in the start node, as I have to showcase the form from sites. I have created the process variables for the process model. Now that I have the form where do I save the Input values of the form into a process variable?? we don't have an Input data task. Such that how can I connect to a data store?. if I don't have a value under process variable.     

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer
    you can store data in a saveInto of a SAIL component. Most of the time we want to do more things with the data to store and putting complex logic inside a SAIL form makes maintenance tougher.
    I prefer saving in the SAIL form directly, because if something goes wrong with the save, you can immediately notify the user that something went wrong. If the DB save occurs in the process model, the user is not notified that something went wrong and they will be confused about what is happening. which you can avoid by placing most of the logic of the application in SAIL and only using process models for essential elements.
Reply
  • 0
    Certified Senior Developer
    you can store data in a saveInto of a SAIL component. Most of the time we want to do more things with the data to store and putting complex logic inside a SAIL form makes maintenance tougher.
    I prefer saving in the SAIL form directly, because if something goes wrong with the save, you can immediately notify the user that something went wrong. If the DB save occurs in the process model, the user is not notified that something went wrong and they will be confused about what is happening. which you can avoid by placing most of the logic of the application in SAIL and only using process models for essential elements.
Children
No Data