Pre-Summer Sale Special - Limited Time 70% Discount Offer - Ends in 0d 00h 00m 00s - Coupon code: sntaclus

A user needs to select a single item from a non-editable list and modify its properties. Which UI pattern is best practice to facilitate editing just the selected item?

A.

Opening a Popup containing an editable detail view for the selected item.

B.

Using an inline Screen within the list view row.

C.

Configuring an InputSet within the list row.

D.

Making the entire list view editable.

E.

Navigating to a separate page for editing.

When a user marks the InspectionComplete field and clicks Update, the user making the update and the date/time of the update need to be recorded in separate fields. Which approach will accomplish this?

A.

Create a Validation Rule that checks for a change in the InspectionComplete field...

B.

Enable Reflection on the InspectionComplete widget...

C.

Create a Preupdate Rule that checks for a change in the InspectionComplete field and updates the UpdatedBy and UpdatedDateTime fields

D.

Create an EventFired Rule that would be triggered...

A ListView shows related Policies for a policyholder. When a user clicks a Policy Number in a text cell, the UI should open a Popup showing details of that specific policy. The elementName property in the row iterator is currentPolicy. What is the correct syntax to open the popup?

A.

Modify the Action property on the atomic widget to PolicyPopup.go(currentPolicy)

B.

Modify the actionAvailable property on the atomic widget to PolicyPopup(currentPolicy)

C.

Modify the actionAvailable property on the atomic widget to PolicyPopup.push(currentPolicy)

D.

Modify the Action property on the atomic widget to PolicyPopup.push(currentPolicy)

In ClaimCenter, the Desktop- > Claims page contains a ListView that is backed by a View Entity ClaimDesktopView.eti. The company would like to add a column to the Claim Validation Level in this List View. Following best practice, which of the following steps are required to fulfill this requirement?

A.

Add a computedTypekey in ClaimDesktopView.etx with name: ValidationLevel_Ext and path: Claim.ValidationLevel.

B.

Add a typekey in ClaimDesktopView.etx with name: ValidationLevel_Ext and path: Claim.ValidationLevel.

C.

Add a viewEntityTypekey in ClaimDesktopView.etx with name: ValidationLevel and path: Claim.ValidationLevel.

D.

Add a computedColumn in ClaimDesktopView.etx with name: ValidationLevel and path: Claim.ValidationLevel.

The sources describe different types of deployment strategies for InsuranceSuite applications. What are characteristics of a selective deployment?

A.

It is primarily used for deploying builds to production star systems.

B.

It always involves a database restore from production.

C.

It requires deploying all InsuranceSuite and EnterpriseEngage applications simultaneously.

D.

It is the only strategy that supports rolling updates.

E.

It allows deployment of only the selected InsuranceSuite applications.

An insurer ran the DBCC checks against a copy of their PolicyCenter production database in a non-production environment to check for errors before promoting the code to production. Three errors with high counts were found in the category " Data update and reconciliation. " What are two best practices for resolving the errors? (Select two)

A.

Identify any bad data and write a SQL script to correct the data; run the script immediately.

B.

Wait to see if error counts increase; if they increase by more than 10%, fix the errors.

C.

Promote the code to production and run the DBCCs again to see if the same errors are found.

D.

Analyze the errors to determine the root cause and correct the code responsible for the errors.

E.

Search the Knowledge Base on the Guidewire Community for solutions to the problems found.

A developer runs Database Consistency Checks for a new ClaimCenter release in a QA environment running a copy of the production database. Analysis of the output identifies data errors in both the QA and production data. Which two options follow best practices for correcting the data? (Select two)

A.

Use the Production Data Fix Tool to correct production data

B.

Write a Gosu query and run it in Scratchpad to correct the data

C.

Export the data to a file, correct it, and run the Import Data Utility

D.

Write a Gosu script and request that Guidewire Support review it

E.

Contact the insurer ' s database group for a SQL script and test it in QA

A developer has modified the DesktopActivities list view in ClaimCenter to add a date cell to display the claim date of loss for each row. The list view is backed by the view entity ActivityDesktopView. The screenshot provided shows the current configuration of the new date cell with the value

ActivityDesktopView.Claim.LossDate.

Which action should be taken to configure the date cell to follow best practices?

A.

Use an existing display key rather than creating a custom display key

B.

Use a text cell widget instead of a date cell widget and format the value as a string

C.

Configure the dateFormat property of the widget to display the date in a short format

D.

Extend the view entity to include the claim loss date rather than access it from Claim

An insurer wants to prevent US phone numbers from containing the string " 555 " in the prefix (digits 4-6). In addition to a test for country, which validation expression will accomplish this?

A.

((phoneOwner.PhoneFields.NationalSubscriberNumber[4..6] as String) == ' 555 ' ) ? DisplayKey.get( " BadPhoneNumber " ) : true

B.

((phoneOwner.PhoneFields.NationalSubscriberNumber as String).contains( ' 555 ' )) ? DisplayKey.get( " BadPhoneNumber " ) : null

C.

((phoneOwner.PhoneFields.NationalSubscriberNumber[3..5] as String).equals( ' 555 ' )) ? DisplayKey.get( " BadPhoneNumber " ) : null

D.

(phoneOwner.PhoneFields.NationalSubscriberNumber[3..5].equals( ' 555 ' )) ? DisplayKey.get( " BadPhoneNumber " ) : true

A business analyst provided a requirement to create a list of Payment Types accepted by vendors. The list will include the values Cash, Credit Card, Debit Card, Check, and EFT. It will be linked to Company Vendors. Following best practices for creating a new typelist, how can this requirement be configured in the data model?

A.

PaymentType_Ext.ttx in the Extensions - > Typelist folder and add typecodes with the _Ext suffix to the typelist for the five payment types

B.

PaymentType.tix in the Metadata - > Typelist folder and add typecodes with the _Ext suffix to the typelist for the five payment types

C.

PaymentType_Ext.tti in the Extensions - > Typelist folder and add typecodes for the five payment types to the typelist

D.

PaymentType.tti in the Metadata - > Typelist folder and add typecodes to the typelist for the five payment types