Description
This process is useful for cases where the standard “Share” action that can be used to share objects with other users is not sufficient. This “Share” action does not only share objects with selected users, it also notifies them about the shared document and requires a confirmation for the process to be completed. The process can be also used as a template for further customization of sharing use cases, if they are to be used in projects.To
Process Start
This process is configured to be startable with any document. To initiate this process, you must have Edit rights for the object type you want to share. Select the “Share” “Share object and notify” action, add the users or user groups you want to share this document with and write a comment:
To start the process, click OK. The custom sharing logic is contained within the BeforeStartEvent of the main activity which gives the users or user groups specified Read rights for the shared document.
The start form assures that the process can only be started if the given object type is shareable. If not, the OK button is inactive and an error message below the check box Object type is shareable will be displayed.
Inbox
Each user and member of the group receives groups will receive the task 'Confirm sharing' in his inbox.
Each recipient must accept the task, read the document and confirm the task when finished. When As soon as each user has confirmed, the process ends or the initiator will be notified about that based on the value of the variable notifyInitiator, which can be set on the start form.
Language
This process model ist is available in English and German.
Administering the Sharing Process
Download the zip file below. Extract the Sharing directory into the location of your enaio projects, which usually is ..\user\documents.
Open the project in the designer and copy the Sharing process model into your project. Then validate the process and if nothing is reported, deploy it.
View file | ||||
---|---|---|---|---|
|
the example model at the bottom of this page. To import the model into yuuvis RAD designer, follow these steps:
- Copy the downloaded .bpmdef file into your yuuvis RAD designer project directory and open the designer.
- Create a model with same namespace and name of the model (namespace: "Sharing", name: "SharingVx" where x is the version number) you just downloaded and moved into your project directory.
Then validate the model and if everything is fine, deploy the model.
The model looks like this:
The process model consists of one parallel container with an activity notice. This activity notice has to be confirmed by the recipients you specify at the beginning of the process.
Main Activity Settings
Configuring the main activity
It is configured that the process is only startable with an object, more precisely any document on the system. You can configure the startable object types in the main activity settings.
This process is available for each user and process. Change the Initiators and the Main object type to to restrict its behavior.
The process subject is set by the title and type of the object the process is started for, as shown below in the BeforeStartEvent of the main activity.:
Version 4
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
|
---|
...
Configuring the multi-instance activity
To send a task to each user or member of the configured groupgroups, the container for parallel execution has to be configured like this:
The script to control set the Participant type Participants is the BeforeStartEvent of the multi-instance container:
Code Block | ||||
---|---|---|---|---|
| ||||
// Set all participants var usersGroups = $.variable('usersGroups').value; for(var i = 0; i < usersGroups.length; i++){ var userGroup = usersGroups[i].value; var recipient = new $.OrgObject(); recipient.id = $.variable('usergroup').valueuserGroup; $.activity('this').performers.push(recipient); } $.done(); |
Configuring the activity '
...
note'
The Participant type attribute must be set to 'Multi-instance controlled', in accordance with the settings of the parallel multi-instance container (see above).
Each user will also receive an e-mail notification, if an e-mail address is provided in his user profile and the e-mail server is configured.
The standard Forward button is renamed to Confirm, as can be seen in the Actions attribute.
Prerequisites
The object types of objects to be shared must be configured first:
Check Allow sharing. Please note that this feature will slighty slightly impact the performance of the system.
...
After sharing the object with a user, the Display Read right for this object is assigned to him.
Process Model Version History
Version | Date | Compatible core-service version | Author | Description | Download | ||||||
---|---|---|---|---|---|---|---|---|---|---|---|
4 | September 07, 2023 | 8.0 or newer | A-Team |
|
| ||||||
3 | March 22, 2019 | Martin Bartonitz |
| ||||||||
2 | March 21, 2019 | Martin Bartonitz |
| ||||||||
1 | March 19, 2019 | Martin Bartonitz | Start with basics:
|
...