Update data of multiple rows

Certified Senior Developer

Hello,

I need to update the data of multiple rows. For example, there are multiple records with requested status and I want to change them into submitted. There is an editable grid from where the status is changed which is used by Admin. The record view is used by the user.

What I think:  To make something when admin clicks on submit the status value update the record with the updated status automatically.

Note: Value of status is already submitted, but it hasn't changed the record from requested to submitted in the record. I do not have access to Database.

I am new to Appian. If you find anything missing kindly reply.

Thanks

  Discussion posts and replies are publicly visible

Parents Reply Children
  • 0
    Certified Lead Developer
    in reply to atul025

    Hi ,

    You don't need database access to develop this method. You already know the table name & the column names right (or it can be fetched from CDT XSD), based on them you can develop queries and use them in this smart service.

    Note: The reason for insisting to do this operation at the database level is that in the future if your application has more records, then doing the operations inside the database will be much more efficient than bringing the data into Appian & manipulating it.