Questions tagged [guidewire]

Guidewire Insurance Suite™ is a set of application frameworks that support main operations of insurance industry, with 3 main area: Policy Center, Claim Center and Billing Center. The aim of these frameworks is to provide a core back-end system for insurance firms, which they can customize according to their needs. The code is mostly written in Gosu, an open-source domain language based on Java.

Questions having this tag

These questions should relate to the Guidewire products, the technologies used by those products or related to problems one might encounter while trying to use or customize them.

Basic Definitions

  • Gosu : the open source programming language used in the Guidewire products
  • GScript : the former name of the Gosu language, which might come up in discussions if the poster has not updated their vocabulary
  • PCF : Page Configuration File - the XML vocabulary for controlling the layout and behavior of a screen within the Guidewire web applications
  • Rules : event handlers written in Gosu that permit the Guidewire application to take action under certain circumstances
  • likely tens of others

Important Links

162 questions
1
vote
1 answer

DCEVM code redefinition is disabled

I'm working with GuideWire - it's an out of box online insurance implementation. It's java based and has its own IDE. Firstly DCEVM worked perfectly, increasing my productivity dramatically. But couple days ago, it has stopped working, supplying me…
m.g.klyuev
  • 11
  • 2
1
vote
3 answers

Static methods in GOSU and Thread-safety

I have below function in a .gs class, which gets called when accessing specific Claim information - public static function testVisibility(claim : Claim) : boolean { if(claim.State == ClaimState.TC_OPEN){ return true; } else{ …
0
votes
2 answers

How to filter out a value for a Array Column in an entity- Gosu?

I need to write a Gosu query to list out the records in a table. I use a compare operator to filter out multiple columns based on some criteria. I need to filter out one particular column which is of type array. Eg The table PaymentDetails has a…
shaher
  • 17
  • 3
0
votes
2 answers

What are "Exportable" entities in Guidewire?

Can you explain what are "Exportable" entities in guidewire? How can we create these entities? Also explain what is the difference between Extendable entities, Exportable entities and Final Entities? Want to Know the difference of the Entity types.
sumanth
  • 11
  • 1
0
votes
2 answers

Foreign Key reference integrity constraint errors

We are running a script that creates data in one of the ClaimCenter tables. This table has a foreign key reference to contacts table, that we do not use. We get an exception: org.h2.jdbc.JdbcBatchUpdateException: Referential integrity constraint…
Wen
  • 1
  • 1
0
votes
1 answer

Guidewire Cloud file transfer decryption

We are preparing to receive PGP encrypted files and need to have them decypted after they arrive in the prescribed S3 bucket. I have been unable to determine if this is something the Cloud infrastructure supports or not. There are too many…
0
votes
1 answer

DBCC - cc_bulkinvoice - A BulkInvoice's total transaction amount should be equal to the sum of all its items' amounts

Below is the query which gives the error records. SELECT Count (*) FROM (SELECT cc_bulkinvoice.id FROM cc_bulkinvoice WHERE cc_bulkinvoice.status NOT IN ( 17, 23 ) AND (SELECT ( CASE WHEN Sum (bii.amount) IS NOT NULL THEN Sum (bii.amount) ELSE…
0
votes
1 answer

Guidewire ClaimCenter Policy Level Coverages

During FNOL, I am unable to see automated exposure creation and policy level coverages into my local but it's working in higher environments. I have imported exposure rules into my local environment but still issue persists. Not getting any error…
0
votes
1 answer

How do you left-align the pagination buttons on the toolbar of a listview in Cloud v10?

In version 8 InsuranceSuite the pagination controls were left-aligned and always visible on the screen. With version 10 the pagination controls are now right-aligned and depending on table size they move around or you have to scroll to see them. How…
ingep
  • 187
  • 1
  • 2
  • 10
0
votes
0 answers

How can I create a server-side web socket connection in Guidewire Insurance Suite applications using GOSU?

I am trying to create a web socket connection in Guidewire Insurance Suite so that my app can behave as the server and I can push messages to a socket. This socket will help with reading messages from PC in near real-time so a front end can listen…
Abhijay Kumar
  • 385
  • 5
  • 15
0
votes
0 answers

TestCafe E70 error when loading a PDF after save it

I am encountering an internal TestCafe error with code E70 while trying to download and process a PDF file in a TestCafe test within the GT:UI of Guidewire Testing Framework. The variables are correctly set, and other functions and libraries used in…
0
votes
0 answers

"java.lang.IllegalStateException: Audit job should always have exactly one PolicyPeriod" when we try to start the audit job

We are facing this exception when we trying to start the Audit Transaction in Guidewire Policy Center. Currently the Audit Transaction is in "Scheduled" Status. We want to move the Audit Transaction "In Progress" but that exception blocking us. Even…
0
votes
3 answers

Retire Custom entity

There is a newly customized new entity, but business doesn't want to use it in future and code has been merged into higher environments. I want to retire this customized entity. May I know how can we achieve this? I know about deprecated but we can…
0
votes
1 answer

How refresh a widget/List View widget

I'd like to force ListView to reload the data after I click on a Button Input. It looks like a trivial task but cannot find how to refresh a widget or even a page/location in gosu
ra74
  • 129
  • 1
  • 10
0
votes
2 answers

Storing an Array of Entities to Person.etx in PolicyCenter 9

I am working in Guidewire PolicyCenter V9, I have an array of policies that I am trying to store in the Person entity via an extension of the original entity. I have attempted to create an array on the Person.etx but cannot establish how to store…