Cost Budget Register

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

Table Type: Company

Table Name: Cost Budget Register
Database Table Name: CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972

Table Number: 1111

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 Cost Budget Register can be queried.

Show/hide an example select of all columns

SELECT
   *
FROM
   [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972]

Show/hide an example select of all columns by name

SELECT
   [No_]
   ,[Source]
   ,[Description]
   ,[From Budget Entry No_]
   ,[To Budget Entry No_]
   ,[From Cost Budget Entry No_]
   ,[To Cost Budget Entry No_]
   ,[No_ of Entries]
   ,[Amount]
   ,[Processed Date]
   ,[Posting Date]
   ,[Closed]
   ,[Level]
   ,[User ID]
   ,[Journal Batch Name]
   ,[Cost Budget Name]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972]

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

SELECT
   *
FROM
   [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
   [CRONUS UK Ltd_$Cost Budget Name$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Name]
      ON
         [Cost Budget Register].[Cost Budget Name] = [Cost Budget Name].[Name]
LEFT JOIN
   [User] AS [User]
      ON
         [Cost Budget Register].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Cost Budget Register].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Cost Budget Register table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1No. Primary Key SearchNo.NormalInteger4No_int
2Source SearchSourceNormalOption4Sourceint
Available options are:
  • “Transfer from G/L Budget”
  • “Cost Journal”
  • “Allocation”
  • “Manual”
3Description SearchDescriptionNormalText100Descriptionnvarchar(200)
4From Budget Entry No. SearchFrom Budget Entry No.NormalInteger4From Budget Entry No_int
Key to join to the G/L Budget Entry table.

Show/hide example query

SELECT
       [Cost Budget Register].[From Budget Entry No_]
       ,[G/L Budget Entry].[Entry No_]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [CRONUS UK Ltd_$G_L Budget Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [G/L Budget Entry]
              ON
                     [Cost Budget Register].[From Budget Entry No_] = [G/L Budget Entry].[Entry No_]
5To Budget Entry No. SearchTo Budget Entry No.NormalInteger4To Budget Entry No_int
Key to join to the G/L Budget Entry table.

Show/hide example query

SELECT
       [Cost Budget Register].[To Budget Entry No_]
       ,[G/L Budget Entry].[Entry No_]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [CRONUS UK Ltd_$G_L Budget Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [G/L Budget Entry]
              ON
                     [Cost Budget Register].[To Budget Entry No_] = [G/L Budget Entry].[Entry No_]
6From Cost Budget Entry No. SearchFrom Cost Budget Entry No.NormalInteger4From Cost Budget Entry No_int
Key to join to the Cost Budget Entry table.

Show/hide example query

SELECT
       [Cost Budget Register].[From Cost Budget Entry No_]
       ,[Cost Budget Entry].[Entry No_]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [CRONUS UK Ltd_$Cost Budget Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Entry]
              ON
                     [Cost Budget Register].[From Cost Budget Entry No_] = [Cost Budget Entry].[Entry No_]
7To Cost Budget Entry No. SearchTo Cost Budget Entry No.NormalInteger4To Cost Budget Entry No_int
Key to join to the Cost Budget Entry table.

Show/hide example query

SELECT
       [Cost Budget Register].[To Cost Budget Entry No_]
       ,[Cost Budget Entry].[Entry No_]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [CRONUS UK Ltd_$Cost Budget Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Entry]
              ON
                     [Cost Budget Register].[To Cost Budget Entry No_] = [Cost Budget Entry].[Entry No_]
8No. of Entries SearchNo. of EntriesNormalInteger4No_ of Entriesint
15Amount SearchAmountNormalDecimal12Amountdecimal(38,38)
20Processed Date SearchProcessed DateNormalDate4Processed Datedatetime
21Posting Date SearchPosting DateNormalDate4Posting Datedatetime
23Closed SearchClosedNormalBoolean4Closedtinyint
25Level SearchLevelNormalInteger4Levelint
31User ID SearchUser IDNormalCode50User IDnvarchar(100)
32Journal Batch Name SearchJournal Batch NameNormalCode10Journal Batch Namenvarchar(20)
33Cost Budget Name SearchCost Budget NameNormalCode10Cost Budget Namenvarchar(20)
Key to join to the Cost Budget Name table.

Show/hide example query

SELECT
       [Cost Budget Register].[Cost Budget Name]
       ,[Cost Budget Name].[Name]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [CRONUS UK Ltd_$Cost Budget Name$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Name]
              ON
                     [Cost Budget Register].[Cost Budget Name] = [Cost Budget Name].[Name]
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
       [Cost Budget Register].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [User] AS [User]
              ON
                     [Cost Budget Register].[$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
       [Cost Budget Register].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Cost Budget Register$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Cost Budget Register]
LEFT JOIN
       [User] AS [User]
              ON
                     [Cost Budget Register].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

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