Author: Paddy Murphy
If a support request comes to investigate why a value is missing from the Cascade/ExteNet ID drop down list in the ROW(right of way) application check that the values listed below are assigned.
Check the following:
Check that there is an entry in the state_cluster table to join the network element cluster to the relevant state – an element will not appear Cascade/ExteNet ID drop down after a state is selected if this is missing.
Example - check for clusters assigned to Pennsylvania
select * from state where abbreviation = 'PA'; select * from state_cluster where state_clusters_id = 39;
If a new entry is required it has be added to the state_cluster join table via a database insert statement.
Example Insert Query
insert into state_cluster values(<State ID>,<cluster ID>);