I want to select and soft delete multiple records from the read only grid and updation of DB should be done through process model called in related action.
Discussion posts and replies are publicly visible
Yes, yu can do it from a grid.
Check this link
community.appian.com/.../delete-from-a-database-using-record-action
In my scenario user can select multiple filed and all the records must get delete by the click of single button, so basically I have only one button to delete on the interface
Is the same approach but controlling which records will be deleted in the interface behavior
To put everything in a nutshell I am trying to achieve this "https://docs.appian.com/suite/help/24.3/recipe-delete-rows-in-a-grid.html"although I have to modify record(for soft delete) on click of button and for that I have used a!recordActionItembut the problem is I am unable to pass multiple values in the identifier of a!recordActionItem
You cannot use a record action to do that.
So should I put a button in my interface that will invoke a PM(using a!startprocessmodel) to soft delete all the selected records?Or is there any other/better approach that I can't think of?
adityan0002 said:So should I put a button in my interface that will invoke a PM(using a!startprocessmodel) to soft delete all the selected records?
Yes, that's the way.