UserName
The UserName table is a public form of the User table that may be distributed to any user. It is created automatically from the User table.
- Section: Actors
Metadata
- Base Table Class: Static
- Default Size: User = 100
Fields
| Name | Type | Size (bytes) | Description |
|---|---|---|---|
| Id | Integer (signed) | 8 | The unique identifier of this UserName. |
| Status | Set of Status | 4 | |
| UserId | String | 200 | The string identifier of this User which is used to log in to the system. |
| Name | String | 48 | The long text identifier of this UserName. |
| Firm | Foreign key to Firm | 8 | |
| UpdateNumber | Integer (unsigned) | 8 | A number that records every change that happens to a record. It is primarily used to avoid write after read problems when an intermediate write has changed the originally read record. |
| OwnerUser | Foreign key to User | 8 | The Id of the User that owns this UserName. |
| OwnerGroup | Foreign key to Group | 8 | The Id of the Group that owns this UserName. |
| OwnerFirm | Foreign key to Firm | 8 | The Id of the Firm that owns this UserName. |
| CreateUser | Foreign key to User | 8 | The Id of the User that created this UserName. |
| CreateTimestamp | Integer (unsigned) | 8 | The time at which this UserName was created. |
| UpdateUser | Foreign key to User | 8 | The Id of the User that last updated this UserName. |
| UpdateTimestamp | Integer (unsigned) | 8 | The time at which this UserName was last updated. |