I have a subtype entity and it has some fields of its own. Now When I save the value of any field then in which instance value will get saved in the database in guidewire policycenter?
I haven't tried anything. I want to know the answer for above question.
In Guidewire all subtypes of a given parent entity are stored in the same database table. It uses a discriminator column (usually named Subtype
) to differentiate between the various subtypes within the table.
In short:
Subtype
column ensures that the database knows which subtype each row representsTherefore, when you save a field value in a subtype entity, it is saved in the database row that corresponds to that individual instance of the subtype.