After installing the Studio module, you need to set it up before using it with the Appian Case Management Studio Base application. This guide walks you through the recommended setup steps, which include:
Implementers can customize the security, display names, and other aspects of the application to best suit their needs.
This is a required step. Since milestones are created and configured to tasks in case types in the Studio module, the following steps must be completed to ensure that milestones are generated successfully upon case creation.
CMGT_Case_SetMetaData
.milestones
map.CMGT_Case_GenerateCaseCreationMilestones_Logic
rule reference with the following code block:
1
rule!CMGT_WFL_Case_GenerateCaseCreationMilestones_Logic(case: fv!item)
Click SAVE CHANGES.
This is a required step. Since reference tasks are created and configured to case types in the Studio module, the following steps must be completed to ensure that tasks are generated successfully upon case creation.
CMGT_Case_Create
.tasks
input variable.1
2
3
=rule!CMGT_WFL_Case_GenerateCaseCreationTasks_Logic(
case:pv!case
)
This is a required step. For cases to be created, at least one case type category and case type must be created in Studio first.
To create a case type category:
Click CREATE.
To create a case type:
Complete Step 1 of the form.
Click ADD TASKS to create and add template tasks or task blocks and configure their relationships.
This is an optional step. In order to add a CREATE FROM TEMPLATE action button to existing cases, which allows caseworkers to add an ad-hoc Confirmation or Document Upload template task to the case after the case was created when needed, complete the following steps:
CMGT_Case
.translation!Create From Template
createTaskFromExisting
CMGT_WFL_TaskFromExisting_Create
with context
1
2
3
4
5
6
{
cancel: null, /* Boolean */
task: rule!CMGT_Task_RecordAction_Create_InitializeParameters(
caseId: rv!identifier
).tasks
}
CMGT_Case_RecordView_Tasks
in the CMGT Case Management Studio Base application.rule!CMGT_Task_RecordGrid
topGridRecordActions
and the commented action.Uncomment the action and point it to createTaskFromExisting
on the CMGT_Case
record.
This is an optional step. In order to add a quick action on the Workspace Home page, which takes users to the Studio site, complete the following steps:
CMGT_WFL_TXT_SITE_URL_STUB
.
CMGT_WFL_QuickLink_ItemMap
and review the expression rule.
item.value.values.link.uri
value.CMGT_Workspace_InternalUser_Sub_QuickLinks
.In local!itemMap
, add CMGT_WFL_QuickLink_ItemMap
to the list by copying the following:
1
rule!CMGT_WFL_QuickLink_ItemMap()
This is an optional step. Refer to Exporting translation strings for translation for information on translating the Studio module to other languages.
Setting Up Studio