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
https://docs.appian.com/suite/help/21.2/recipe-use-the-write-to-data-store-entity-smart-service-function-on-an-interface.html
This example may be useful to you!
Hi
The example you refer to in that the complete data is getting published. What I seek only to update status values in the record.
Hi ,
If you're looking to update the records for a specific set of columns, then this may be useful
docs.appian.com/.../Query_Database_Smart_Service.html
Hi Selvakumar Kumarasamy,
I do not have access to the Database. Can I have a different approach? Maybe using the action on record and updating all rows for a particular column. Is possible?
Hi atula0005,
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.