> ## Documentation Index
> Fetch the complete documentation index at: https://docs.superoffice.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Enum ETableRight

> Table right is a combination of bits representing permissions on a row.

Table right is a combination of bits representing permissions on a row.

## Syntax

```crmscript theme={null}
ETableRight
```

## Fields

| Name             | Description                                                                                                             |
| ---------------- | ----------------------------------------------------------------------------------------------------------------------- |
| None             | The row should be hidden from the user.                                                                                 |
| Select           | The user is allowed to see the row.                                                                                     |
| Update           | The user is allowed to modify the values in this row.                                                                   |
| Insert           | The user is allowed to add new rows to the table.                                                                       |
| Delete           | The user is allowed to delete this row.                                                                                 |
| Filtering        | A flag used to indicate that some fields may be hidden.                                                                 |
| RestrictedUpdate | A hint flag used to indicate that some fields may not be updateable, even though the user has update access to the row. |
| Unused1          | Unused value only present for serializatrion purposes                                                                   |
| Uninitialized    | Magic value to indicate not                                                                                             |
| FULL             | Select, Update, Insert, Delete - no restrictions                                                                        |
| WRITE            | Update/RestrictedUpdate or Insert                                                                                       |
| URU              | Update or RestrictedUpdate                                                                                              |
| UDR              | Select, Update, Delete                                                                                                  |
| UR               | Select or Update                                                                                                        |
| URI              | Select, Update, Insert                                                                                                  |
| R                | Select only                                                                                                             |
| RI               | Select and Insert (Anonymous)                                                                                           |
| RF               | Select or Filter                                                                                                        |
| F                | just Filtering                                                                                                          |
| FI               | Filtering and Insert (Anonymous)                                                                                        |


## Related topics

- [SuperOffice.WebApi.Data.ETableRight](/en/api/reference/webapi/SuperOffice.WebApi.Data.ETableRight.md)
- [Namespace CRMScript.NetServer](/en/automation/crmscript/reference/CRMScript.NetServer.md)
- [SuperOffice.WebApi.Data.TableRight](/en/api/reference/webapi/SuperOffice.WebApi.Data.TableRight.md)
- [SuperOffice.WebApi.Data.PocketStartupData](/en/api/reference/webapi/SuperOffice.WebApi.Data.PocketStartupData.md)
- [NSPocketStartupData](/en/automation/crmscript/reference/CRMScript.NetServer.NSPocketStartupData.md)
- [DataRight table](/en/database/tables/dataright.md)
