You need to create a read-only grid that displays support case information. Data for the support cases is mapped to the "Case" record type with data sync enabled.
Within the record, there are fields named "createdDateTime" and "resolvedDateTime". These two fields store the timestamps for when a case is created and resolved, respectively.
The grid includes a column indicating the number of hours between when the case was created and when it was resolved. This column must be sortable within the grid.
How should you calculate the hour value that will display in the column?
Answer : A
A custom record field that evaluates in real-time and calculates the hours between 'createdDateTime' and 'resolvedDateTime' ensures the calculated value is available as a sortable field within the read-only grid.
You're creating an interface object that displays a report of open cases. This interface will be used as the content of a site page.
Users in the "ACME Employees" group must be able to view the report.
Which two steps should you perform? (Choose two.)
Answer : A, D
The site page visibility must permit the 'ACME Employees' group to ensure they can access the site page with the report.
The 'ACME Employees' group must be added as a viewer on the folder containing the interface object to grant them access to the report interface.
Which step should you perform to identify expression rules that have been causing or have caused performance issues in the past 30days?
Answer : B
The Admin Console > Rule Performance tab provides metrics and insights on expression rules that have caused performance issues in the past 30 days, allowing you to identify and address slow-running rules.
You need to configure the security for the synced record type Case.
Your requirements are:
Only users in the "Archive Management" group can access cases in the "Archived" status.
Cases in the status "Deleted" are accessible to no one.
Users in the "All Users" group can already access the record.
What should you do?
Answer : C
Creating a record-level security rule for 'Archived' cases restricts access based on user group, and a source filter ensures 'Deleted' cases are excluded from being accessed by any user. This approach meets both security requirements efficiently.
You're making a POST request to the Appian web API. You need to include complex data structures, such as lists or objects, in the request body.
How should you design the API to accept those requests?
Answer : C
To include complex data structures like lists or objects in a POST request to an Appian Web API, you should convert the data to JSON and include it in the request body as a string. Appian supports application/json content type for parsing complex data structures in APIs.
What are three locations to call an Integration that changes the source data? (Choose three.)
Answer : A, C, D
Integrations can be called from rules, allowing for source data changes when used in the proper context.
The Call Integration Smart Service in a process model can execute integrations that modify source data.
Web APIs using POST, PUT, or DELETE methods are typically used to change source data via integrations.
You're creating an interface to display all the employees of a company on a staff list.
You decide to use a!gridField() to create a user grid to display information from the company's AAA_Employee record, which has 42 fields relating to various employee information. To avoid cluttering the grid, you want to show six (6) fields on the grid.
How should you optimize the interface?
Answer : A
Querying the AAA_Employee record with a!queryRecordType(), specifying only the six fields needed in the fields parameter, optimizes data retrieval and improves grid performance by minimizing unnecessary data loading.