0% found this document useful (0 votes)
8 views1 page

GOSU Code for Existence Type Configuration

The document outlines the configuration of Existence Types in the ExistenceType.tti file. It provides a GOSU code example for determining the required or suggested status based on selected coverage limits. Specifically, if the limit is set to 500, it is marked as Required, while a limit of 250 is marked as Suggested.

Uploaded by

iamkrupareddy
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
8 views1 page

GOSU Code for Existence Type Configuration

The document outlines the configuration of Existence Types in the ExistenceType.tti file. It provides a GOSU code example for determining the required or suggested status based on selected coverage limits. Specifically, if the limit is set to 500, it is marked as Required, while a limit of 250 is marked as Suggested.

Uploaded by

iamkrupareddy
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

Existence Script:

If we want to Configure Existence Types, then we need to that in the Typelist


[Link] file.

Scenario: If you click on Comprehensive Coverage and then if you choose Limit 500
then it needs to be Required, If the Limit is 250, then It needs to be Suggested.
Write GOSU code for this Scenario?

Code:

Code - [Link]
function Demo(): ExistenceType{
var test = ExistenceType
if([Link] == 500){
test = ExistenceType.TC_REQUIRED
}
else if ([Link] == 250){
test = ExistenceType.TC_SUGGESTED
}
return test
}

Calling - On Dependent Script - [Link]


<ExistenceScript><![CDATA[return [Link]()]]></ExistenceScript>

You might also like