You are designing a case management application. The initiator creates a case, and the reviewer reviews it approximately 7 days later.
You have already designed a process model for the initiators to create the case.
Which process model design will result in the lowest memory impact? (Choose the best answer.)
A. When all case details are entered, the case appears as a case record, and when the reviewer is ready to review the record, they can do so via a related action from the case record.
B. When all case details are entered, the process flow will proceed and assign a task to the reviewer to review the record.
C. When all case details are entered, the process flow will call a Start Process node to initialize a review process model for the reviewer.
D. When all case details are entered, the process flow will call a Sub-Process node to initialize a review process model for the reviewer.
An organization has decided to integrate with a third-party to scan incoming documents and capture the details in a table called [appian].[document]. Each document will form a new case in Appian to be displayed on a Record List.
The record needs to show data from both [appian].[document] and [appian].[caseData], which holds additional case information.
What is the most efficient way to achieve this?
A. Create a trigger on the [appian].[document] table to copy all the data across to the [appian].[caseData] table and point the record at [appian].[caseData].
B. Create a SSIS package to run at a regular interval.
C. Create a view between both the [appian].[document] and [appian].[caseData] tables to feed the record.
D. Create a stored procedure to query the data from both the [appian].[document] and [appian].[caseData] tables.
Which two statements are true for importing Appian applications? (Choose two.)
A. It is not possible to undo changes from an import.
B. It is not possible to import the same application multiple times.
C. Applications from an earlier version of Appian can be imported into later versions of Appian.
D. Importing a published application changes its state to Unpublished and need to be published again.
You need to build a QC review process for a factory that allows a technician to review each production line on a regular basis.
A QC technician has 30 minutes to complete their review, after which time the review will expire and be marked as a "missed review." If this, occurs, a supervisor should be notified via email and the review data should not be saved. Additional requirements are as follows:
The user should be able to save a draft of their review before submission, and come back to work on it later.
Once submitted, the review data should be saved to the database.
Which option needs to be implemented to meet the requirements?
A. An exception timer that skips the QC review task after 30 minutes, which flows to a Send Email node configured to notify a supervisor
B. The task configured as a quick task
C. A send message event which sends an email after 30 minutes to the supervisor
D. An escalation that sends an email after 30 minutes to the supervisor
What should you use to create a virtual relation in a database to query the data?
A. Procedure
B. Index
C. Function
D. View
You create an interface, but it fails to load. When you open the design errors log, you see a memory circuit breaker error.
What are two possible root causes of this error? (Choose two.)
A. A database query is taking too long to evaluate.
B. The interface contains some special characters.
C. The interface is storing too much data in local variables.
D. The interface component is looping over too many items.
Which user role should be used to allow external systems to invoke Appian web APIs?
A. Service Account
B. System Administrator
C. Application User
D. Designer
You are tasked with configuring a process model to store the result of an expression rule for every item in a list.
Which process model design has the lowest memory footprint?
A. Run MNI over a script task for each item in the list.
B. Call a sub-process for each item in the list.
C. Configure a script task to use a!foreach to iterate over each item in the list.
D. Create a loop of smart service nodes in the process model and execute it for each item in the list.
You are reviewing a recent Health Check report and notice that a process model has high memory consumption.
What are three possible reasons for this? (Choose three.)
A. Too many process variables
B. Misconfigured error alerts
C. Nested CDTs with large numbers of fields
D. Too many nodes
E. Gateway nodes with multiple incoming flows
You are on a project where the goal is to use Appian Sites to create and edit invoices issued to customers.
This process model is being used as a related action, to edit an Invoice. You have already created a record for invoices.
Review the following image:
Which two suggestions regarding this process are valid? (Choose two.)
A. We should consider adding a timer exception which skips the "Edit/Credit Invoice" node after 24 hours.
B. We should add this process model as a related action on the Invoices record called "Edit Invoice."
C. We should add two pages to the site, one of which is a Record List of Invoices, and the other which has this process model as a Report.
D. To improve performance, we should consider removing activity chaining from all flows.