Document Service Scenario

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

Table Type: System

Table Name: Document Service Scenario
Database Table Name: Document Service Scenario

Table Number: 2000000115

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

Show/hide an example select of all columns

SELECT
   *
FROM
   [Document Service Scenario]

Show/hide an example select of all columns by name

SELECT
   [Service Integration]
   ,[Company]
   ,[Document Service]
   ,[Use for Application]
   ,[Use for Platform]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [Document Service Scenario]

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

SELECT
   *
FROM
   [Document Service Scenario] AS [Document Service Scenario]
LEFT JOIN
   [Company] AS [Company]
      ON
         [Document Service Scenario].[Company] = [Company].[Name]
LEFT JOIN
   [User] AS [User]
      ON
         [Document Service Scenario].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Document Service Scenario].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Document Service Scenario table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1Service Integration Primary Key SearchService IntegrationNormalOption4Service Integrationint
Available options are:
  • “OneDrive”
2Company Primary Key SearchCompanyNormalGUID16Companyuniqueidentifier
Key to join to the Company table.

Show/hide example query

SELECT
       [Document Service Scenario].[Company]
       ,[Company].[Name]
FROM
       [Document Service Scenario] AS [Document Service Scenario]
LEFT JOIN
       [Company] AS [Company]
              ON
                     [Document Service Scenario].[Company] = [Company].[Name]
3Document Service SearchDocument ServiceNormalCode30Document Servicenvarchar(60)
4Use for Application SearchUse for ApplicationNormalBoolean4Use for Applicationtinyint
5Use for Platform SearchUse for PlatformNormalBoolean4Use for Platformtinyint
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
       [Document Service Scenario].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [Document Service Scenario] AS [Document Service Scenario]
LEFT JOIN
       [User] AS [User]
              ON
                     [Document Service Scenario].[$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
       [Document Service Scenario].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [Document Service Scenario] AS [Document Service Scenario]
LEFT JOIN
       [User] AS [User]
              ON
                     [Document Service Scenario].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

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