Tenant Web Service

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

Table Type: System

Table Name: Tenant Web Service
Database Table Name: Tenant Web Service

Table Number: 2000000168

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 Web Service can be queried.

Show/hide an example select of all columns

SELECT
   *
FROM
   [Tenant Web Service]

Show/hide an example select of all columns by name

SELECT
   [Object Type]
   ,[Object ID]
   ,[Service Name]
   ,[Published]
   ,[ExcludeFieldsOutsideRepeater]
   ,[ExcludeNonEditableFlowFields]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [Tenant Web Service]

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

SELECT
   *
FROM
   [Tenant Web Service] AS [Tenant Web Service]
LEFT JOIN
   [User] AS [User]
      ON
         [Tenant Web Service].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Tenant Web Service].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Tenant Web Service table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
3Object Type Primary Key SearchObject TypeNormalOption4Object Typeint
Available options are:
  • “”
  • “Codeunit”
  • “Page”
  • “Query”
6Object ID SearchObject IDNormalInteger4Object IDint
9Service Name Primary Key SearchService NameNormalText250Service Namenvarchar(500)
12Published SearchPublishedNormalBoolean4Publishedtinyint
13ExcludeFieldsOutsideRepeater SearchExclude Fields Outside of the Repeater from EtagNormalBoolean4ExcludeFieldsOutsideRepeatertinyint
14ExcludeNonEditableFlowFields SearchExclude Non-Editable Flow Fields from ETagNormalBoolean4ExcludeNonEditableFlowFieldstinyint
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 Web Service].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [Tenant Web Service] AS [Tenant Web Service]
LEFT JOIN
       [User] AS [User]
              ON
                     [Tenant Web Service].[$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 Web Service].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [Tenant Web Service] AS [Tenant Web Service]
LEFT JOIN
       [User] AS [User]
              ON
                     [Tenant Web Service].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

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