Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/2000000080
Table Type: System
Table Name: Page Data Personalization
Database Table Name: Page Data Personalization
Due to how Dynamics BC tables and columns are named, square brackets need to be wrapped around the table name and column names. Below are example queries showing how Page Data Personalization can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[Page Data Personalization]
Show/hide an example select of all columns by name
SELECT
[User SID]
,[Object Type]
,[Object ID]
,[Date]
,[Time]
,[Personalization ID]
,[ValueName]
,[Value]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[Page Data Personalization]
Show/hide an example select of all columns including those from all joined tables
SELECT
*
FROM
[Page Data Personalization] AS [Page Data Personalization]
LEFT JOIN
[User] AS [User]
ON
[Page Data Personalization].[User SID] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Page Data Personalization].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Page Data Personalization].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in Page Data Personalization table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
3 | User SID | User SID | Normal | GUID | 16 | User SID | uniqueidentifier |
Key to join to the User table.Show/hide example querySELECT [Page Data Personalization].[User SID] ,[User].[User Security ID] FROM [Page Data Personalization] AS [Page Data Personalization] LEFT JOIN [User] AS [User] ON [Page Data Personalization].[User SID] = [User].[User Security ID] | |||||||
6 | User ID | User ID | FlowField | Code | 50 | ||
9 | Object Type | Object Type | Normal | Option | 4 | Object Type | int |
Available options are:
| |||||||
12 | Object ID | Object ID | Normal | Integer | 4 | Object ID | int |
15 | Date | Date | Normal | Date | 4 | Date | datetime |
18 | Time | Time | Normal | Time | 4 | Time | datetime |
21 | Personalization ID | Personalization ID | Normal | Code | 40 | Personalization ID | nvarchar(80) |
24 | ValueName | ValueName | Normal | Code | 40 | ValueName | nvarchar(80) |
27 | Value | Value | Normal | BLOB | 8 | Value | image |
2000000000 | $systemId | System ID | Normal | GUID | 16 | $systemId | uniqueidentifier |
2000000001 | SystemCreatedAt | Created At | Normal | DateTime | 8 | $systemCreatedAt | datetime |
2000000002 | SystemCreatedBy | Created By | Normal | GUID | 16 | $systemCreatedBy | uniqueidentifier |
Key to join to the User table.Show/hide example querySELECT [Page Data Personalization].[$systemCreatedBy] ,[User].[User Security ID] FROM [Page Data Personalization] AS [Page Data Personalization] LEFT JOIN [User] AS [User] ON [Page Data Personalization].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |