SAIL form data to submit into Database

Certified Associate Developer
Hi,

I am new to SAIL forms development.

I have a SAIL interface form with some text fields and dropdown fields with submit button. I need to insert the data feeded into those fields and store that into Database when the user click on Submit button.

Please help me.

OriginalPostID-258425

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    3. We can create a process model having write to data store entity smart service, create a process variable of type same CDT as rule input as parameterized, use the same process variable under input tab of write to data store entity smart service.

    Under saveInto of submit button of interface, use a!startProcess() function
    Here first parameter I.e. processModel will be a constant which will refer the above process model,
    And pass the rule input for next parameter I.e. process parameters as

    {myInput: ri!mycdtdata}

    This can also do your job
Reply
  • 0
    Certified Lead Developer
    3. We can create a process model having write to data store entity smart service, create a process variable of type same CDT as rule input as parameterized, use the same process variable under input tab of write to data store entity smart service.

    Under saveInto of submit button of interface, use a!startProcess() function
    Here first parameter I.e. processModel will be a constant which will refer the above process model,
    And pass the rule input for next parameter I.e. process parameters as

    {myInput: ri!mycdtdata}

    This can also do your job
Children
No Data