# View: royalty_accounting_qa_vw_dim_abacus_account

**View Name:** royalty_accounting_qa_vw_dim_abacus_account
**Table Source:** `Derived from: Qa.Dim_Country, Qa.Vw_Dim_Abacus_Account, Royalty_Accounting, Royalty_Accounting.Qa`
**File Path:** `views/royalty_accounting_qa_vw_dim_abacus_account.view.lkml`

## Overview

- **File Size:** 2386 bytes
- **Lines of Code:** 123
- **Dimensions:** 21
- **Measures:** 0
- **Dimension Groups:** 0
- **Filters:** 0

## Dimensions

| Name | Type |
|------|------|
| `account_id` | string |
| `account_name` | string |
| `account_payee_id` | number |
| `payoneer_payee_id` | number |
| `payoneer_payee_name` | string |
| `payoneer_program_id` | number |
| `sap_vendor_id` | number |
| `currency_code` | string |
| `payment_schedule` | string |
| `account_payment_term_id` | number |
| `payment_minimum` | number |
| `payment_entity_id` | number |
| `agreement_type_id` | number |
| `paid_by` | string |
| `agreement_type` | string |
| `owner` | string |
| `abacus_account_url` | string |
| `sax_interested_party_id` | string |
| `country_iso_of_tax_residence` | string |
| `country_of_tax_residence` | string |
| `is_vat_exempt` | string |

## Derived Table

```sql
sql:
    select aa.*, dc.countryname from ROYALTY_ACCOUNTING.QA.VW_DIM_ABACUS_ACCOUNT aa
    left join facts.qa.dim_country dc on dc.ISO3166A3
 = aa.country_of_tax_residence
    ;;
```

