Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/5997
Table Type: Company
Table Name: Standard Service Line
Database Table Name: CRONUS UK Ltd_$Standard Service Line$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 Standard Service Line can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972]
Show/hide an example select of all columns by name
SELECT
[Standard Service Code]
,[Line No_]
,[Type]
,[No_]
,[Description]
,[Quantity]
,[Amount Excl_ VAT]
,[Unit of Measure Code]
,[Shortcut Dimension 1 Code]
,[Shortcut Dimension 2 Code]
,[Variant Code]
,[Dimension Set ID]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[CRONUS UK Ltd_$Standard Service 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_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line]
LEFT JOIN
[CRONUS UK Ltd_$Standard Service Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Code]
ON
[Standard Service Line].[Standard Service Code] = [Standard Service Code].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Standard Service Line].[Shortcut Dimension 1 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension]
ON
[Standard Service Line].[Shortcut Dimension 2 Code] = [Dimension].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Item Variant$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Item Variant]
ON
[Standard Service Line].[Variant Code] = [Item Variant].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Dimension Set Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension Set Entry]
ON
[Standard Service Line].[Dimension Set ID] = [Dimension Set Entry].[Dimension Set ID]
LEFT JOIN
[User] AS [User]
ON
[Standard Service Line].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Standard Service Line].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in Standard Service Line table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
1 | Standard Service Code | Standard Service Code | Normal | Code | 10 | Standard Service Code | nvarchar(20) |
Key to join to the Standard Service Code table.Show/hide example querySELECT [Standard Service Line].[Standard Service Code] ,[Standard Service Code].[Code] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [CRONUS UK Ltd_$Standard Service Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Code] ON [Standard Service Line].[Standard Service Code] = [Standard Service Code].[Code] | |||||||
2 | Line No. | Line No. | Normal | Integer | 4 | Line No_ | int |
3 | Type | Type | Normal | Option | 4 | Type | int |
Available options are:
| |||||||
4 | No. | No. | Normal | Code | 20 | No_ | nvarchar(40) |
5 | Description | Description | Normal | Text | 100 | Description | nvarchar(200) |
6 | Quantity | Quantity | Normal | Decimal | 12 | Quantity | decimal(38,38) |
7 | Amount Excl. VAT | Amount Excl. Tax | Normal | Decimal | 12 | Amount Excl_ VAT | decimal(38,38) |
8 | Unit of Measure Code | Unit of Measure Code | Normal | Code | 10 | Unit of Measure Code | nvarchar(20) |
9 | Shortcut Dimension 1 Code | Shortcut Dimension 1 Code | Normal | Code | 20 | Shortcut Dimension 1 Code | nvarchar(40) |
Key to join to the Dimension table.Show/hide example querySELECT [Standard Service Line].[Shortcut Dimension 1 Code] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Standard Service Line].[Shortcut Dimension 1 Code] = [Dimension].[Code] | |||||||
10 | Shortcut Dimension 2 Code | Shortcut Dimension 2 Code | Normal | Code | 20 | Shortcut Dimension 2 Code | nvarchar(40) |
Key to join to the Dimension table.Show/hide example querySELECT [Standard Service Line].[Shortcut Dimension 2 Code] ,[Dimension].[Code] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [CRONUS UK Ltd_$Dimension$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension] ON [Standard Service Line].[Shortcut Dimension 2 Code] = [Dimension].[Code] | |||||||
11 | Variant Code | Variant Code | Normal | Code | 10 | Variant Code | nvarchar(20) |
Key to join to the Item Variant table.Show/hide example querySELECT [Standard Service Line].[Variant Code] ,[Item Variant].[Code] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [CRONUS UK Ltd_$Item Variant$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Item Variant] ON [Standard Service Line].[Variant Code] = [Item Variant].[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 [Standard Service Line].[Dimension Set ID] ,[Dimension Set Entry].[Dimension Set ID] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [CRONUS UK Ltd_$Dimension Set Entry$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Dimension Set Entry] ON [Standard Service Line].[Dimension Set ID] = [Dimension Set Entry].[Dimension Set ID] | |||||||
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 [Standard Service Line].[$systemCreatedBy] ,[User].[User Security ID] FROM [CRONUS UK Ltd_$Standard Service Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Service Line] LEFT JOIN [User] AS [User] ON [Standard Service Line].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |