NAV App Published App

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

Table Number: 2000000156

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 NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1App ID Primary Key SearchApp IDNormalGUID16App IDuniqueidentifier
2Version Major Primary Key SearchVersion MajorNormalInteger4Version Majorint
3Version Minor Primary Key SearchVersion MinorNormalInteger4Version Minorint
4Version Build Primary Key SearchVersion BuildNormalInteger4Version Buildint
5Version Revision Primary Key SearchVersion RevisionNormalInteger4Version Revisionint
6Package ID SearchPackage IDNormalGUID16Package IDuniqueidentifier
7Name SearchNameNormalText250Namenvarchar(500)
8Publisher SearchPublisherNormalText250Publishernvarchar(500)
9Content Hash SearchContent HashNormalText250Content Hashnvarchar(500)
10Hash Algorithm SearchHash AlgorithmNormalInteger4Hash Algorithmint
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 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]
2000000003SystemModifiedAt SearchModified AtNormalDateTime8$systemModifiedAtdatetime
2000000004SystemModifiedBy SearchModified ByNormalGUID16$systemModifiedByuniqueidentifier
Key to join to the User table.

Show/hide example query

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

Leave a Reply

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