Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

Description

As an external user of a customerFor external or rare users of the system, it is possible to complete tasks and upload documents without being required to log in and access all options in the product. Customers sometimes use the form-only view for their navigate within the system. Only the form can be shown to those users so they are not confused by any optional tabs or lists.

This feature can be used for external users, such as their customers or suppliers, to facilitate their participation in workflows. However, the form-only view currently displays only the form and does not include the document upload feature. It is important for external users also to have the ability to add documents within this view also helpful for managers or supervisors who only have to give an approval every once in a while.

Additionally, the documents thab can be shown to ensure a seamless and efficient workflow.

The link can be as follows:

Info

[domain]/tim/client/#/external/task/[TASK_ID]/smartform

Allowing external users to access only form data such as

...

Use case: Customizing the e-mail content for the specific task so that only the external Form view is sent via mail.

...

You can use this link:

Code Block
${SYS.ROOTLINK}tim/client/#/external/task/
[
${SYS.TASK_ID
]
}/smartform?documents=true

Allowing external users to access form data + documents section to allow them to upload documents on their task

...

SYS.BASELINK) and SYS.TASK_ID can be taken from system variables
Info
Info

${SYS.ROOTLINK} and ${SYS.TASK_NAME} are System Variables and can be easily used.

Info

For the German version please make sure to set the tenant language to DE for receiving the text mail in German.

...

After uploading tim.properties inside the resources folder using the adequate privileges. Then when you assign task “Fill Employee Information“ to the actor “Designer”

...

The email containing the text “You got assigned to the task” is created successfully.

...


...

After removing “documents=true” text from tim.properties and uploading tim.properties inside the resources folder using the adequate privileges. Then when you assign task “Fill Employee Information“ to the actor “Designer”

...

The form no longer contains the option to add documents

...

Only the form tab is displayed.

...

Use case: Customizing the form content via the specific node in the workflow.

...

After customizing the task mail text and saving the changes, you can now assign the task.

...

The updated content is displayed successfully.

...

After customizing the task mail text and saving the changes, you can now start a new instance and assign the task.

...

The updated content is displayed successfully and the link to the external form is displayed on the mail text.

...

The external form will be sent to the manager and can be accessed via the link. First the manager has to login and then is able to see the form + complete the task.

...

If the documents tab should not be shown, the link that is sent out has to be adjusted:

.../smartform?documents=false

...