To Find an Object When you Know its Feature Class and FID

  1. In the Infrastructure Administrator, do one of the following:
    • Click Enterprise and connect to the enterprise industry model. Open a project.
    • Click File and open an industry model drawing or template.
  2. Expand the Industry Model node and click Feature Search Administrator.
  3. Click Create.
    • Enter a name, such as Sample Search.
    • For Type, select Sequential Search.
  4. Click OK.
  5. In the Feature Search Administrator, click the Statement 1 tab and enter the following values:

    Title

    Feature Class
    Input Type Selection list
    Select Statement select f_class_name, caption from TB_Dictionary where f_class_type <> 'T' order by f_class_name; (feature class type ‘T’ = attribute)
    Geometry Select Statement Leave empty.

    Result rows are F_Class_Name and Caption. For example:

    SW_BUILDING Building

    SW_MANHOLE Manhole

    SW_SEWER Sewer

  6. On the Statement 2 tab, enter the following values:

    Title

    Feature
    Input Type Text box
    Select Statement select fid from {0} where fid = {1} order by fid
    Geometry Select Statement Select geom from {0} where fid = {1}

    This select statement uses the input type Text Box. The select statement uses the value (FID) that you entered: {1}.

    Result rows: FID … 100 … 101 … 102

  7. For more information, see Feature Search: Sequential Search.