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