Multiple Select to Start Action on a Record

Usecase: I have a record of Accounts which display a grid of related customers populated from a view.

Now, I have a use case where the customer wants to select one or more customer to carry out an action on their information.

Also, another use case where the the user needs to be able to Add a new customer using a button on the record.

I understand the record view is for rendering information and that a link to related action is the cleaner way available for a user to take an action on a record related information.

What is the neatest way to implement the the use case? (links on table rows that start processes in the background is not an option)

Appreciate your input?

OriginalPostID-212711

OriginalPostID-212711

  Discussion posts and replies are publicly visible

Parents
  • 0
    Certified Lead Developer
    I agree that using a related action would be the neatest solution. However, with 16.2 they added Smart Service Functions which allow you to execute Smart Services within SAIL code. You might be able to use these new Smart Service Functions (a!writeToDataStoreEntity() in particular) to add new customers directly from your Record. Another new Smart Service is a!startProcess(), which provides an OOTB way to start processes from records. This allows you to do what Christine mentioned, but without using the startprocesswriter plugin.

    Here's some more info on the new Smart Service Functions: forum.appian.com/.../Appian_Release_Notes.html
Reply
  • 0
    Certified Lead Developer
    I agree that using a related action would be the neatest solution. However, with 16.2 they added Smart Service Functions which allow you to execute Smart Services within SAIL code. You might be able to use these new Smart Service Functions (a!writeToDataStoreEntity() in particular) to add new customers directly from your Record. Another new Smart Service is a!startProcess(), which provides an OOTB way to start processes from records. This allows you to do what Christine mentioned, but without using the startprocesswriter plugin.

    Here's some more info on the new Smart Service Functions: forum.appian.com/.../Appian_Release_Notes.html
Children
No Data