Tenant Application Storage

Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/2000000239

Table Type: System

Table Name: Tenant Application Storage
Database Table Name: Tenant Application Storage

Table Number: 2000000239

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 Tenant Application Storage can be queried.

Show/hide an example select of all columns

SELECT
   *
FROM
   [Tenant Application Storage]

Show/hide an example select of all columns by name

SELECT
   [ID]
   ,[Target Release]
   ,[Package ID]
   ,[Name]
   ,[Publisher]
   ,[Version]
   ,[ApplicationVersion]
   ,[Dependencies]
   ,[Sync Mode]
   ,[Blob]
   ,[Package Hash]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [Tenant Application Storage]

Show/hide an example select of all columns including those from all joined tables

SELECT
   *
FROM
   [Tenant Application Storage] AS [Tenant Application Storage]
LEFT JOIN
   [CRONUS UK Ltd_$Guided Experience Item$63ca2fa4-4f03-4f2b-a480-172fef340d3f] AS [Guided Experience Item]
      ON
         [Tenant Application Storage].[Version] = [Guided Experience Item].[Version]
LEFT JOIN
   [User] AS [User]
      ON
         [Tenant Application Storage].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Tenant Application Storage].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Tenant Application Storage table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1ID SearchIDNormalGUID16IDuniqueidentifier
2Target Release Primary Key SearchTarget ReleaseNormalText43Target Releasenvarchar(86)
3Package ID Primary Key SearchPackage IDNormalGUID16Package IDuniqueidentifier
4Name SearchNameNormalText250Namenvarchar(500)
5Publisher SearchPublisherNormalText250Publishernvarchar(500)
6Version SearchVersionNormalText43Versionnvarchar(86)
Key to join to the Guided Experience Item table.

Show/hide example query

SELECT
       [Tenant Application Storage].[Version]
       ,[Guided Experience Item].[Version]
FROM
       [Tenant Application Storage] AS [Tenant Application Storage]
LEFT JOIN
       [CRONUS UK Ltd_$Guided Experience Item$63ca2fa4-4f03-4f2b-a480-172fef340d3f] AS [Guided Experience Item]
              ON
                     [Tenant Application Storage].[Version] = [Guided Experience Item].[Version]
7ApplicationVersion SearchApplication VersionNormalText43ApplicationVersionnvarchar(86)
8Dependencies SearchDependenciesNormalBLOB8Dependenciesimage
9Sync Mode SearchSync ModeNormalOption4Sync Modeint
Available options are:
  • “Add”
  • “Force”
10Installed SearchInstalledFlowFieldBoolean4
11Blob SearchBlobNormalBLOB8Blobimage
13Package Hash SearchPackage HashNormalText64Package Hashnvarchar(128)
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
       [Tenant Application Storage].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [Tenant Application Storage] AS [Tenant Application Storage]
LEFT JOIN
       [User] AS [User]
              ON
                     [Tenant Application Storage].[$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
       [Tenant Application Storage].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [Tenant Application Storage] AS [Tenant Application Storage]
LEFT JOIN
       [User] AS [User]
              ON
                     [Tenant Application Storage].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

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