--- title: "Querying for Applications Missing Academic or Teacher References" slug: "querying-for-applications-missing-academic-or-teacher-references" status: "new" updated: 2026-06-18T22:04:44Z published: 2026-06-18T22:04:44Z canonical: "knowledge.technolutions.net/querying-for-applications-missing-academic-or-teacher-references" --- > ## Documentation Index > Fetch the complete documentation index at: https://knowledge.technolutions.net/llms.txt > Use this file to discover all available pages before exploring further. # Querying for Applications Missing Academic or Teacher References You can query for applications missing academic or teacher references to find applicants who may need follow-up before their files are ready for review. Use this information to identify stalled applications, prepare counselor follow-up lists, and monitor where missing recommendations may be slowing the admissions process. #### Try a Slate example 💼 Copy this [Suitcase](/docs/suitcase-import) ID and paste it in **Database → Suitcase Import** to import this query: ```SuitcaseID daeff76d-ee52-4f02-ae38-f5764e873719:slate-admissions-showcase ``` > [!NOTE] > 💡 Tip > > Find this query and other importable examples in the [Admissions Showcase environment](/v1/docs/showcase-environments). ## Reviewing missing references Missing academic or teacher references can delay file completion and create extra follow-up work for admissions staff. A query can surface applications that do not yet have an academic reference record so staff can decide whether to contact the applicant, the school counselor, or the recommender. The example starts from application records, joins applicant details from the person record, and uses a dependent subquery to look for related application reference records. It keeps applications where no academic or teacher reference exists. ![](https://cdn.us.document360.io/cd8ea7a6-07f3-4846-a554-627ac016d3e3/Images/Documentation/Querying for missing academic or teacher references.png) ## Building the query Use the **Application** base so each row represents one application. The missing-reference logic comes from a subquery filter that checks related application references. 1. Go to **Queries / Reports**. 2. Select **New Query**. 3. Configure the following settings: - **Name:** Enter a descriptive name, such as `Applications Missing Academic or Teacher References`. - **Folder:** Select the folder where the query should be saved. - **Category:** Records - **Type:** Configurable Joins - **Base:** Application 4. Select **Save**. ### Adding a join Add a Person join so the query can return applicant identifiers, names, and staff assignment fields. 1. Select **Join**. 2. Create a join to **Person**. ### Adding a subquery filter The subquery filter is the part of the query that identifies missing references. It checks whether the application has a related academic or teacher reference and keeps only applications where that reference does not exist. 1. Select **Subquery Filter**. 2. Select the application reference source for academic or teacher references. 3. Configure the following settings: - **Name:** Academic/Teacher Reference - **Type:** Dependent subquery - **Aggregate:** Not Exists 4. Confirm that the subquery is limited to academic or teacher reference records. 5. Select **Save**. ### Adding a subquery export The subquery export returns the count of academic or teacher reference records for each application. In this example, the filter already limits the query to applications without that reference, so the count is mainly useful for validation and review. 1. Select **Subquery Export**. 2. Select the application reference source for academic or teacher references. 3. Configure the following settings: - **Name:** Academic reference count - **Type:** Dependent subquery - **Output:** Aggregate - **Aggregate:** Count 4. Select **Save**. ### Adding exports Add exports similar to these so staff can identify the applicant, see application context, and route follow-up. Field names may differ in your database. - **Person:** Reference ID, Name, Staff Assigned - **Application:** Round - **Subquery export:** Academic reference count ## Using the query Use the query when you need to: - Find applications that are missing academic or teacher references. - Create follow-up lists for admissions staff or counselors. - Review recommendation-related bottlenecks in the application funnel. - Identify applicants who may need a reminder before review. ## Customizing the query After importing the query, adjust it to match your local process. You can: - Add application status, submitted date, application round, or entry term filters to focus on a specific review population. - Add a staff-assignment filter so each staff member sees only assigned applications. - Change the reference type in the subquery to look for a different missing material or recommendation type. - Add exports for applicant email, school, program, territory, or checklist status. > [!WARNING] > 📝 Note > > This example does not include an application status filter. Add one if you only want submitted, active, or review-ready applications.