Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/1005
Table Type: Company
Table Name: Job WIP G/L Entry
Database Table Name: CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972
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 Job WIP G/L Entry can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972]
Show/hide an example select of all columns by name
SELECT
[Entry No_]
,[Job No_]
,[Document No_]
,[G_L Account No_]
,[Posting Date]
,[WIP Entry Amount]
,[Job Posting Group]
,[Type]
,[G_L Bal_ Account No_]
,[WIP Method Used]
,[WIP Posting Method Used]
,[WIP Posting Date]
,[Description]
,[G_L Entry No_]
,[Reversed]
,[Reverse]
,[WIP Transaction No_]
,[Reverse Date]
,[Job Complete]
,[Job WIP Total Entry No_]
,[Global Dimension 1 Code]
,[Global Dimension 2 Code]
,[Dimension Set ID]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972]
Show/hide an example select of all columns including those from all joined tables
SELECT
*
FROM
[CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry]
LEFT JOIN
[CRONUS UK Ltd_$Job WIP Method$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP Method]
ON
[Job WIP G/L Entry].[WIP Method Used] = [Job WIP Method].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Global Dimension 1 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Global Dimension 2 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension Set Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension Set Entry]
ON
[Job WIP G/L Entry].[Dimension Set ID] = [Dimension Set Entry].[Dimension Set ID]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 3 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 4 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 5 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 6 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 7 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Job WIP G/L Entry].[Shortcut Dimension 8 Code] = [Dimension].[Code]
LEFT JOIN
[User] AS [User]
ON
[Job WIP G/L Entry].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Job WIP G/L Entry].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in Job WIP G/L Entry table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
1 | Entry No. | Entry No. | Normal | Integer | 4 | Entry No_ | int |
2 | Job No. | Job No. | Normal | Code | 20 | Job No_ | nvarchar(40) |
Key to join to the Job table.Show/hide example querySELECT [Job WIP G/L Entry].[Job No_] ,[Job].[No_] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Job$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job] ON [Job WIP G/L Entry].[Job No_] = [Job].[No_] | |||||||
3 | Document No. | Document No. | Normal | Code | 20 | Document No_ | nvarchar(40) |
4 | G/L Account No. | G/L Account No. | Normal | Code | 20 | G_L Account No_ | nvarchar(40) |
5 | Posting Date | Posting Date | Normal | Date | 4 | Posting Date | datetime |
6 | WIP Entry Amount | WIP Entry Amount | Normal | Decimal | 12 | WIP Entry Amount | decimal(38,38) |
7 | Job Posting Group | Job Posting Group | Normal | Code | 20 | Job Posting Group | nvarchar(40) |
8 | Type | Type | Normal | Option | 4 | Type | int |
Available options are:
| |||||||
9 | G/L Bal. Account No. | G/L Bal. Account No. | Normal | Code | 20 | G_L Bal_ Account No_ | nvarchar(40) |
10 | WIP Method Used | WIP Method Used | Normal | Code | 20 | WIP Method Used | nvarchar(40) |
Key to join to the Job WIP Method table.Show/hide example querySELECT [Job WIP G/L Entry].[WIP Method Used] ,[Job WIP Method].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Job WIP Method$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP Method] ON [Job WIP G/L Entry].[WIP Method Used] = [Job WIP Method].[Code] | |||||||
11 | WIP Posting Method Used | WIP Posting Method Used | Normal | Option | 4 | WIP Posting Method Used | int |
Available options are:
| |||||||
12 | WIP Posting Date | WIP Posting Date | Normal | Date | 4 | WIP Posting Date | datetime |
13 | Description | Description | Normal | Text | 100 | Description | nvarchar(200) |
14 | G/L Entry No. | G/L Entry No. | Normal | Integer | 4 | G_L Entry No_ | int |
15 | Reversed | Reversed | Normal | Boolean | 4 | Reversed | tinyint |
16 | Reverse | Reverse | Normal | Boolean | 4 | Reverse | tinyint |
17 | WIP Transaction No. | WIP Transaction No. | Normal | Integer | 4 | WIP Transaction No_ | int |
18 | Reverse Date | Reverse Date | Normal | Date | 4 | Reverse Date | datetime |
19 | Job Complete | Job Complete | Normal | Boolean | 4 | Job Complete | tinyint |
20 | Job WIP Total Entry No. | Job WIP Total Entry No. | Normal | Integer | 4 | Job WIP Total Entry No_ | int |
Key to join to the Job WIP Total table.Show/hide example querySELECT [Job WIP G/L Entry].[Job WIP Total Entry No_] ,[Job WIP Total].[Entry No_] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Job WIP Total$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP Total] ON [Job WIP G/L Entry].[Job WIP Total Entry No_] = [Job WIP Total].[Entry No_] | |||||||
60 | Global Dimension 1 Code | Global Dimension 1 Code | Normal | Code | 20 | Global Dimension 1 Code | nvarchar(40) |
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[Global Dimension 1 Code] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[Global Dimension 1 Code] = [Dimension].[Code] | |||||||
61 | Global Dimension 2 Code | Global Dimension 2 Code | Normal | Code | 20 | Global Dimension 2 Code | nvarchar(40) |
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[Global Dimension 2 Code] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[Global Dimension 2 Code] = [Dimension].[Code] | |||||||
480 | Dimension Set ID | Dimension Set ID | Normal | Integer | 4 | Dimension Set ID | int |
Key to join to the Dimension Set Entry table.Show/hide example querySELECT [Job WIP G/L Entry].[Dimension Set ID] ,[Dimension Set Entry].[Dimension Set ID] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension Set Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension Set Entry] ON [Job WIP G/L Entry].[Dimension Set ID] = [Dimension Set Entry].[Dimension Set ID] | |||||||
481 | Shortcut Dimension 3 Code | Shortcut Dimension 3 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
482 | Shortcut Dimension 4 Code | Shortcut Dimension 4 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
483 | Shortcut Dimension 5 Code | Shortcut Dimension 5 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
484 | Shortcut Dimension 6 Code | Shortcut Dimension 6 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
485 | Shortcut Dimension 7 Code | Shortcut Dimension 7 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
486 | Shortcut Dimension 8 Code | Shortcut Dimension 8 Code | FlowField | Code | 20 | ||
Key to join to the Dimension table.Show/hide example querySELECT [Job WIP G/L Entry].[] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Job WIP G/L Entry].[] = [Dimension].[Code] | |||||||
2000000000 | $systemId | System ID | Normal | GUID | 16 | $systemId | uniqueidentifier |
2000000001 | SystemCreatedAt | Created At | Normal | DateTime | 8 | $systemCreatedAt | datetime |
2000000002 | SystemCreatedBy | Created By | Normal | GUID | 16 | $systemCreatedBy | uniqueidentifier |
Key to join to the User table.Show/hide example querySELECT [Job WIP G/L Entry].[$systemCreatedBy] ,[User].[User Security ID] FROM [CRONUS UK Ltd_$Job WIP G_L Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Job WIP G/L Entry] LEFT JOIN [User] AS [User] ON [Job WIP G/L Entry].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |