Table of Contents

ROW missing Cascade/ExteNet ID dropdown value

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.

Customer configuration through loadsheet

Check the following:

Operations Database configuration

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>);