291 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
1
answer
67
views
PendingContactRoleUpdate Error related to database-backed property (PolicyCenter)
I'm working on an ask where I'm dealing with multiple contact related fields that are not revisioned and are kept in sync as soon as a change is made in the PolicyInfo screen.
Currently, I'm working ...
1
vote
1
answer
49
views
How to use the composite request for GET methods
I am exploring the Composite API to create an account and submission using sub-requests. It works as expected when I manually enter the data in Postman. However, certain elements—such as the producer ...
0
votes
2
answers
89
views
Guidewire triggering a custom event in messaging queue
I’m trying to create a new message queue in Guidewire ClaimCenter that sends a message to an external system when a specific business condition occurs. I’ve added a new destination and event in ...
0
votes
1
answer
71
views
How to add a custom filter in PolicyCenter DesktopJobFiltersEnhancement for Desktop in PolicyCenter?
I am working with Guidewire PolicyCenter and want to enhance the filters available on the Desktop screen. Out-of-the-box, there are filters such as "All Open Jobs," "Created in Past 7 ...
0
votes
1
answer
55
views
Guidewire PolicyCenter 10: Alternative to deprecated setFieldValue() method
I'm currently working on an on-premise setup of Guidewire PolicyCenter 10 (latest version).
In multiple places across our codebase, we are using the following pattern to dynamically set field values ...
0
votes
1
answer
64
views
calling ContactUtil.unlinkCMContact() from batch
In ClaimCenter, I need to unlink a contact entity from appropriate CM entity. I have found a method ContactUtil.unlinkCMContact(pcf.api.Location, entity.Contact) which does exactly that and I would ...
1
vote
2
answers
105
views
Cascade delete for one-to-one mapping (guidewire custom entity linked to Document)
<entity
entity="ABC_Ext"
desc="SAMPLE ENTITY"
table="sampleentity_ext"
type="retireable">
<foreignkey
fkentity="Job"
...
1
vote
1
answer
74
views
Guidewire SQL Query - compare on longtext field
I am trying to run this query
var q = Query.make(Invoice).compare(Invoice#Note_UFA, Relop.Equals, "test").select()
and I am getting this error
"Cannot search on column Note_UFA. Is it ...
0
votes
1
answer
80
views
Creating a browser link to a specific quote in Guidewire PolicyCenter
I'm trying to open Guidewire PolicyCenter in the browser to view from another application on a specific quote with an ID and can't find an obvious way to do it. I see that most PolicyCenter URLs end ...
0
votes
1
answer
69
views
Guidewire BillingCenter Upgrade 8 to 10 DefaultFileLockManager Loop
I recently upgraded Guidewire BillingCenter v8 to v10. When I try to compile using gwb compile or gwb genXmlSources I run into a never ending loop:
2025年08月12日T11:48:10.444+0200 [INFO] [com.guidewire....
0
votes
0
answers
120
views
Cloud to Cloud Data Migration into Guidewire Claim Center
I hope you're all doing well! I've gone through the Claim Migration Tool and Data Upload Tool(DUT) documents for data migration to Claim Center but our architecture is a bit different where we have ...
0
votes
1
answer
121
views
How can I read a file in the src/main/resources folder in Guidewire Integration Gateway
On my local I am able to read a file:
src\main\resources\cif\codeTranslate\MB_Code_translation_CIF.json
using this code:
File f = new File(fileName);
return Files.readString(f.toPath());
But this is ...
0
votes
1
answer
162
views
Can Integration Views be used for deserializing a JSON response from an external service?
Scenario : An on-prem PC V10 requests some data from a webservice hosted in Cloud. The response received is a JSON response.
Can Integration Views be used to deserialize a JSON response?
Is it ...
1
vote
0
answers
80
views
Changing a Coverage BasisAmount data type because maximum integer value is being reached
I am running into an issue where a BasisAmount field in a PolicyCenter coverage is defined as an nonnegativeinteger, which has a maximum value of 2,147,483,647 and unfortunately the BasisAmount is ...
2
votes
1
answer
149
views
Guidewire SQL query return complete result set
In Billing Center, there are certain instances where I need to return payments that span multiple months. When you run the query out of Sql Server Management Studio, it takes around 2 seconds to ...