NAV App Installed App

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

Table Number: 2000000153

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 NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1App ID Primary Key SearchApp IDNormalGUID16App IDuniqueidentifier
2Package ID SearchPackage IDNormalGUID16Package IDuniqueidentifier
3Name SearchNameNormalText250Namenvarchar(500)
4Publisher SearchPublisherNormalText250Publishernvarchar(500)
5Version Major SearchVersion MajorNormalInteger4Version Majorint
6Version Minor SearchVersion MinorNormalInteger4Version Minorint
7Version Build SearchVersion BuildNormalInteger4Version Buildint
8Version Revision SearchVersion RevisionNormalInteger4Version Revisionint
9Compatibility Major SearchCompatibility MajorNormalInteger4Compatibility Majorint
10Compatibility Minor SearchCompatibility MinorNormalInteger4Compatibility Minorint
11Compatibility Build SearchCompatibility BuildNormalInteger4Compatibility Buildint
12Compatibility Revision SearchCompatibility RevisionNormalInteger4Compatibility Revisionint
13Content Hash SearchContent HashNormalText250Content Hashnvarchar(500)
14Hash Algorithm SearchHash AlgorithmNormalInteger4Hash Algorithmint
15Extension Type SearchExtension TypeNormalInteger4Extension Typeint
16Published As SearchPublished AsNormalOption4Published Asint
Available options are:
  • “Global”
  • “PTE”
  • “Dev”
2000000000$systemId SearchSystem IDNormalGUID16$systemIduniqueidentifier
2000000001SystemCreatedAt SearchCreated AtNormalDateTime8$systemCreatedAtdatetime
2000000002SystemCreatedBy SearchCreated ByNormalGUID16$systemCreatedByuniqueidentifier
Key to join to the User table.

Show/hide example query

SELECT
       [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]
2000000003SystemModifiedAt SearchModified AtNormalDateTime8$systemModifiedAtdatetime
2000000004SystemModifiedBy SearchModified ByNormalGUID16$systemModifiedByuniqueidentifier
Key to join to the User table.

Show/hide example query

SELECT
       [NAV App Installed App].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [NAV App Installed App] AS [NAV App Installed App]
LEFT JOIN
       [User] AS [User]
              ON
                     [NAV App Installed App].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

Your email address will not be published. Required fields are marked *