Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/2000000156
Table Type: System
Table Name: NAV App Published App
Database Table Name: NAV App Published App
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 NAV App Published App can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[NAV App Published App]
Show/hide an example select of all columns by name
SELECT
[App ID]
,[Version Major]
,[Version Minor]
,[Version Build]
,[Version Revision]
,[Package ID]
,[Name]
,[Publisher]
,[Content Hash]
,[Hash Algorithm]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[NAV App Published App]
Show/hide an example select of all columns including those from all joined tables
SELECT
*
FROM
[NAV App Published App] AS [NAV App Published App]
LEFT JOIN
[User] AS [User]
ON
[NAV App Published App].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[NAV App Published App].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in NAV App Published App table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
1 | App ID | App ID | Normal | GUID | 16 | App ID | uniqueidentifier |
2 | Version Major | Version Major | Normal | Integer | 4 | Version Major | int |
3 | Version Minor | Version Minor | Normal | Integer | 4 | Version Minor | int |
4 | Version Build | Version Build | Normal | Integer | 4 | Version Build | int |
5 | Version Revision | Version Revision | Normal | Integer | 4 | Version Revision | int |
6 | Package ID | Package ID | Normal | GUID | 16 | Package ID | uniqueidentifier |
7 | Name | Name | Normal | Text | 250 | Name | nvarchar(500) |
8 | Publisher | Publisher | Normal | Text | 250 | Publisher | nvarchar(500) |
9 | Content Hash | Content Hash | Normal | Text | 250 | Content Hash | nvarchar(500) |
10 | Hash Algorithm | Hash Algorithm | Normal | Integer | 4 | Hash Algorithm | int |
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 [NAV App Published App].[$systemCreatedBy] ,[User].[User Security ID] FROM [NAV App Published App] AS [NAV App Published App] LEFT JOIN [User] AS [User] ON [NAV App Published App].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |