Routing Line

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

Table Type: Company

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

Table Number: 99000764

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

Show/hide an example select of all columns

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

Show/hide an example select of all columns by name

SELECT
   [Routing No_]
   ,[Version Code]
   ,[Operation No_]
   ,[Next Operation No_]
   ,[Previous Operation No_]
   ,[Type]
   ,[No_]
   ,[Work Center No_]
   ,[Work Center Group Code]
   ,[Description]
   ,[Setup Time]
   ,[Run Time]
   ,[Wait Time]
   ,[Move Time]
   ,[Fixed Scrap Quantity]
   ,[Lot Size]
   ,[Scrap Factor _]
   ,[Setup Time Unit of Meas_ Code]
   ,[Run Time Unit of Meas_ Code]
   ,[Wait Time Unit of Meas_ Code]
   ,[Move Time Unit of Meas_ Code]
   ,[Minimum Process Time]
   ,[Maximum Process Time]
   ,[Concurrent Capacities]
   ,[Send-Ahead Quantity]
   ,[Routing Link Code]
   ,[Standard Task Code]
   ,[Unit Cost per]
   ,[Recalculate]
   ,[Sequence No_ (Forward)]
   ,[Sequence No_ (Backward)]
   ,[Fixed Scrap Qty_ (Accum_)]
   ,[Scrap Factor _ (Accumulated)]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$Routing 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_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
   [CRONUS UK Ltd_$Work Center Group$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Work Center Group]
      ON
         [Routing Line].[Work Center Group Code] = [Work Center Group].[Code]
LEFT JOIN
   [CRONUS UK Ltd_$Routing Link$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Link]
      ON
         [Routing Line].[Routing Link Code] = [Routing Link].[Code]
LEFT JOIN
   [CRONUS UK Ltd_$Standard Task$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Task]
      ON
         [Routing Line].[Standard Task Code] = [Standard Task].[Code]
LEFT JOIN
   [User] AS [User]
      ON
         [Routing Line].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Routing Line].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Routing Line table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1Routing No. Primary Key SearchRouting No.NormalCode20Routing No_nvarchar(40)
Key to join to the Routing Header table.

Show/hide example query

SELECT
       [Routing Line].[Routing No_]
       ,[Routing Header].[No_]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Routing Header$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Header]
              ON
                     [Routing Line].[Routing No_] = [Routing Header].[No_]
2Version Code Primary Key SearchVersion CodeNormalCode20Version Codenvarchar(40)
4Operation No. Primary Key SearchOperation No.NormalCode10Operation No_nvarchar(20)
5Next Operation No. SearchNext Operation No.NormalCode30Next Operation No_nvarchar(60)
6Previous Operation No. SearchPrevious Operation No.NormalCode30Previous Operation No_nvarchar(60)
7Type SearchTypeNormalOption4Typeint
Available options are:
  • “Work Center”
  • “Machine Center”
  • ” “
8No. SearchNo.NormalCode20No_nvarchar(40)
9Work Center No. SearchWork Center No.NormalCode20Work Center No_nvarchar(40)
Key to join to the Work Center table.

Show/hide example query

SELECT
       [Routing Line].[Work Center No_]
       ,[Work Center].[No_]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Work Center$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Work Center]
              ON
                     [Routing Line].[Work Center No_] = [Work Center].[No_]
10Work Center Group Code SearchWork Center Group CodeNormalCode10Work Center Group Codenvarchar(20)
Key to join to the Work Center Group table.

Show/hide example query

SELECT
       [Routing Line].[Work Center Group Code]
       ,[Work Center Group].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Work Center Group$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Work Center Group]
              ON
                     [Routing Line].[Work Center Group Code] = [Work Center Group].[Code]
11Description SearchDescriptionNormalText100Descriptionnvarchar(200)
12Setup Time SearchSetup TimeNormalDecimal12Setup Timedecimal(38,38)
13Run Time SearchRun TimeNormalDecimal12Run Timedecimal(38,38)
14Wait Time SearchWait TimeNormalDecimal12Wait Timedecimal(38,38)
15Move Time SearchMove TimeNormalDecimal12Move Timedecimal(38,38)
16Fixed Scrap Quantity SearchFixed Scrap QuantityNormalDecimal12Fixed Scrap Quantitydecimal(38,38)
17Lot Size SearchLot SizeNormalDecimal12Lot Sizedecimal(38,38)
18Scrap Factor % SearchScrap Factor %NormalDecimal12Scrap Factor _decimal(38,38)
19Setup Time Unit of Meas. Code SearchSetup Time Unit of Meas. CodeNormalCode10Setup Time Unit of Meas_ Codenvarchar(20)
Key to join to the Capacity Unit of Measure table.

Show/hide example query

SELECT
       [Routing Line].[Setup Time Unit of Meas_ Code]
       ,[Capacity Unit of Measure].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Capacity Unit of Measure$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Capacity Unit of Measure]
              ON
                     [Routing Line].[Setup Time Unit of Meas_ Code] = [Capacity Unit of Measure].[Code]
20Run Time Unit of Meas. Code SearchRun Time Unit of Meas. CodeNormalCode10Run Time Unit of Meas_ Codenvarchar(20)
Key to join to the Capacity Unit of Measure table.

Show/hide example query

SELECT
       [Routing Line].[Run Time Unit of Meas_ Code]
       ,[Capacity Unit of Measure].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Capacity Unit of Measure$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Capacity Unit of Measure]
              ON
                     [Routing Line].[Run Time Unit of Meas_ Code] = [Capacity Unit of Measure].[Code]
21Wait Time Unit of Meas. Code SearchWait Time Unit of Meas. CodeNormalCode10Wait Time Unit of Meas_ Codenvarchar(20)
Key to join to the Capacity Unit of Measure table.

Show/hide example query

SELECT
       [Routing Line].[Wait Time Unit of Meas_ Code]
       ,[Capacity Unit of Measure].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Capacity Unit of Measure$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Capacity Unit of Measure]
              ON
                     [Routing Line].[Wait Time Unit of Meas_ Code] = [Capacity Unit of Measure].[Code]
22Move Time Unit of Meas. Code SearchMove Time Unit of Meas. CodeNormalCode10Move Time Unit of Meas_ Codenvarchar(20)
Key to join to the Capacity Unit of Measure table.

Show/hide example query

SELECT
       [Routing Line].[Move Time Unit of Meas_ Code]
       ,[Capacity Unit of Measure].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Capacity Unit of Measure$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Capacity Unit of Measure]
              ON
                     [Routing Line].[Move Time Unit of Meas_ Code] = [Capacity Unit of Measure].[Code]
27Minimum Process Time SearchMinimum Process TimeNormalDecimal12Minimum Process Timedecimal(38,38)
28Maximum Process Time SearchMaximum Process TimeNormalDecimal12Maximum Process Timedecimal(38,38)
30Concurrent Capacities SearchConcurrent CapacitiesNormalDecimal12Concurrent Capacitiesdecimal(38,38)
31Send-Ahead Quantity SearchSend-Ahead QuantityNormalDecimal12Send-Ahead Quantitydecimal(38,38)
34Routing Link Code SearchRouting Link CodeNormalCode10Routing Link Codenvarchar(20)
Key to join to the Routing Link table.

Show/hide example query

SELECT
       [Routing Line].[Routing Link Code]
       ,[Routing Link].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Routing Link$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Link]
              ON
                     [Routing Line].[Routing Link Code] = [Routing Link].[Code]
35Standard Task Code SearchStandard Task CodeNormalCode10Standard Task Codenvarchar(20)
Key to join to the Standard Task table.

Show/hide example query

SELECT
       [Routing Line].[Standard Task Code]
       ,[Standard Task].[Code]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [CRONUS UK Ltd_$Standard Task$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Standard Task]
              ON
                     [Routing Line].[Standard Task Code] = [Standard Task].[Code]
40Unit Cost per SearchUnit Cost perNormalDecimal12Unit Cost perdecimal(38,38)
41Recalculate SearchRecalculateNormalBoolean4Recalculatetinyint
45Comment SearchCommentFlowFieldBoolean4
50Sequence No. (Forward) SearchSequence No. (Forward)NormalInteger4Sequence No_ (Forward)int
51Sequence No. (Backward) SearchSequence No. (Backward)NormalInteger4Sequence No_ (Backward)int
52Fixed Scrap Qty. (Accum.) SearchFixed Scrap Qty. (Accum.)NormalDecimal12Fixed Scrap Qty_ (Accum_)decimal(38,38)
53Scrap Factor % (Accumulated) SearchScrap Factor % (Accumulated)NormalDecimal12Scrap Factor _ (Accumulated)decimal(38,38)
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
       [Routing Line].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [User] AS [User]
              ON
                     [Routing 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
       [Routing Line].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Routing Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Routing Line]
LEFT JOIN
       [User] AS [User]
              ON
                     [Routing Line].[$systemModifiedBy] = [User].[User Security ID]

Show/hide tables related from Routing Line table

Leave a Reply

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