# View: Delivery_App_Queue_Status_Count

**View Name:** Delivery_App_Queue_Status_Count
**Table Source:** `Derived from: Art_Relations_Prod_Art_Relations.Customer_Master_Master, Orchard_App_Reporting_V2, Orchard_App_Reporting_V2.Art_Relations_Prod_Art_Relations, Orchard_App_Reporting_V2.Prod_Performance_Nr_Delivery_Neighbouring_Rights_Delivery, Prod_Performance_Nr_Delivery_Neighbouring_Rights_Delivery.Delivery_Queue`
**File Path:** `views/Delivery_App_Queue_Status_Count.view.lkml`

## Overview

- **File Size:** 483 bytes
- **Lines of Code:** 17
- **Dimensions:** 1
- **Measures:** 0
- **Dimension Groups:** 0
- **Filters:** 0

## Dimensions

| Name | Type |
|------|------|
| `Customer_Name` | string |

## Derived Table

```sql
sql:
    select
cmm.customer_name,
from ORCHARD_APP_REPORTING_V2.PROD_PERFORMANCE_NR_DELIVERY_NEIGHBOURING_RIGHTS_DELIVERY.delivery_queue dq
LEFT JOIN ORCHARD_APP_REPORTING_V2.ART_RELATIONS_PROD_ART_RELATIONS.CUSTOMER_MASTER_MASTER AS cmm
      ON cmm.CUSTOMER_MASTER_MASTER_ID=dq.customer_master_master_id
      group by 1;;
```

