Add data in a text fields in an interface to update many rows of my db at one go

Hi

I want add or complete data in a text fields in an interface (image below) to update many rows of my db at one go, instead of updating one by one or row by row

For example, complete the form interface (image above) to update 5 rows at one go... this rows of my db

which would be the best practice or help me with examples?


please help

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Senior Developer

    Hi,

    You can create a process model (generic process so that we can use the same anywhere we want) that contain a UIT and a Write to details process model (see below pic).

    And what you only have to do, you have to pass the selected grid data (as we know we can hold the selected data in a local) on clicking the button from your above interface to the generic process model UIT and then you can update that data in the editable grid.

    Then after updating the data on clicking submit your updated data will go to write in the db.

    Thank You.

Reply
  • 0
    Certified Senior Developer

    Hi,

    You can create a process model (generic process so that we can use the same anywhere we want) that contain a UIT and a Write to details process model (see below pic).

    And what you only have to do, you have to pass the selected grid data (as we know we can hold the selected data in a local) on clicking the button from your above interface to the generic process model UIT and then you can update that data in the editable grid.

    Then after updating the data on clicking submit your updated data will go to write in the db.

    Thank You.

Children