Syntax: FIND [-NAME query_name] [-OUTPUT file_name] query_exp Locates occurrences in the current SCA libraries that match the given query expression. This command displays the name, class, module, line number, occurrence, type, and relationship for each query. Each time you enter a FIND command, SCA creates a new query to describe the result. This example finds all occurrences of symbols whose name begins with build. SCA> FIND build* This example finds the primary declarations of all routines. SCA> FIND occ=primary and symbol=routine This example displays the complete call tree below translit. SCA> FIND called_by( translit, depth=all ) This example finds all the variables of type integer. SCA> FIND typed_by( integer, symbol=variable )