Posted Deferral Line

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

Table Type: Company

Table Name: Posted Deferral Line
Database Table Name: CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972

Table Number: 1705

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 Posted Deferral Line can be queried.

Show/hide an example select of all columns

SELECT
   *
FROM
   [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972]

Show/hide an example select of all columns by name

SELECT
   [Deferral Doc_ Type]
   ,[Gen_ Jnl_ Document No_]
   ,[Account No_]
   ,[Document Type]
   ,[Document No_]
   ,[Line No_]
   ,[Posting Date]
   ,[Description]
   ,[Amount]
   ,[Amount (LCY)]
   ,[Currency Code]
   ,[Deferral Account]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972]

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

SELECT
   *
FROM
   [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
   [CRONUS UK Ltd_$Sales Header$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Sales Header]
      ON
         [Posted Deferral Line].[Document Type] = [Sales Header].[Document Type]
      AND
         [Posted Deferral Line].[Document No_] = [Sales Header].[No_]
LEFT JOIN
   [CRONUS UK Ltd_$Sales Header Archive$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Sales Header Archive]
      ON
         [Posted Deferral Line].[Document Type] = [Sales Header Archive].[Document Type]
      AND
         [Posted Deferral Line].[Document No_] = [Sales Header Archive].[No_]
LEFT JOIN
   [CRONUS UK Ltd_$Currency$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Currency]
      ON
         [Posted Deferral Line].[Currency Code] = [Currency].[Code]
LEFT JOIN
   [User] AS [User]
      ON
         [Posted Deferral Line].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Posted Deferral Line].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Posted Deferral Line table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1Deferral Doc. Type Primary Key SearchDeferral Doc. TypeNormalOption4Deferral Doc_ Typeint
Available options are:
  • “Purchase”
  • “Sales”
  • “G/L”
2Gen. Jnl. Document No. Primary Key SearchGen. Jnl. Document No.NormalCode20Gen_ Jnl_ Document No_nvarchar(40)
Key to join to the Posted Deferral Header table.

Show/hide example query

SELECT
       [Posted Deferral Line].[Gen_ Jnl_ Document No_]
       ,[Posted Deferral Header].[Gen_ Jnl_ Document No_]
FROM
       [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
       [CRONUS UK Ltd_$Posted Deferral Header$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Header]
              ON
                     [Posted Deferral Line].[Gen_ Jnl_ Document No_] = [Posted Deferral Header].[Gen_ Jnl_ Document No_]
3Account No. Primary Key SearchAccount No.NormalCode20Account No_nvarchar(40)
Key to join to the G/L Account table.

Show/hide example query

SELECT
       [Posted Deferral Line].[Account No_]
       ,[G/L Account].[No_]
FROM
       [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
       [CRONUS UK Ltd_$G_L Account$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [G/L Account]
              ON
                     [Posted Deferral Line].[Account No_] = [G/L Account].[No_]
4Document Type Primary Key SearchDocument TypeNormalInteger4Document Typeint
5Document No. Primary Key SearchDocument No.NormalCode20Document No_nvarchar(40)
6Line No. Primary Key SearchLine No.NormalInteger4Line No_int
7Posting Date Primary Key SearchPosting DateNormalDate4Posting Datedatetime
8Description SearchDescriptionNormalText100Descriptionnvarchar(200)
9Amount SearchAmountNormalDecimal12Amountdecimal(38,38)
10Amount (LCY) SearchAmount ($)NormalDecimal12Amount (LCY)decimal(38,38)
11Currency Code SearchCurrency CodeNormalCode10Currency Codenvarchar(20)
Key to join to the Currency table.

Show/hide example query

SELECT
       [Posted Deferral Line].[Currency Code]
       ,[Currency].[Code]
FROM
       [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
       [CRONUS UK Ltd_$Currency$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Currency]
              ON
                     [Posted Deferral Line].[Currency Code] = [Currency].[Code]
12Deferral Account SearchDeferral AccountNormalCode20Deferral Accountnvarchar(40)
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
       [Posted Deferral Line].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
       [User] AS [User]
              ON
                     [Posted Deferral Line].[$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
       [Posted Deferral Line].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Posted Deferral Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Posted Deferral Line]
LEFT JOIN
       [User] AS [User]
              ON
                     [Posted Deferral Line].[$systemModifiedBy] = [User].[User Security ID]

Show/hide tables related from Posted Deferral Line table

Leave a Reply

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