Easily find this page again using the shortlink: https://bct.azrcrv.co.uk/5767
Table Type: Company
Table Name: Warehouse Activity Line
Database Table Name: CRONUS UK Ltd_$Warehouse Activity 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 Warehouse Activity Line can be queried.
Show/hide an example select of all columns
SELECT
*
FROM
[CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972]
Show/hide an example select of all columns by name
SELECT
[Activity Type]
,[No_]
,[Line No_]
,[Source Type]
,[Source Subtype]
,[Source No_]
,[Source Line No_]
,[Source Subline No_]
,[Source Document]
,[Location Code]
,[Shelf No_]
,[Sorting Sequence No_]
,[Item No_]
,[Variant Code]
,[Unit of Measure Code]
,[Qty_ per Unit of Measure]
,[Description]
,[Description 2]
,[Quantity]
,[Qty_ (Base)]
,[Qty_ Outstanding]
,[Qty_ Outstanding (Base)]
,[Qty_ to Handle]
,[Qty_ to Handle (Base)]
,[Qty_ Handled]
,[Qty_ Handled (Base)]
,[Shipping Advice]
,[Due Date]
,[Destination Type]
,[Destination No_]
,[Shipping Agent Code]
,[Shipping Agent Service Code]
,[Shipment Method Code]
,[Starting Date]
,[Qty_ Rounding Precision]
,[Qty_ Rounding Precision (Base)]
,[Assemble to Order]
,[ATO Component]
,[Serial No_]
,[Lot No_]
,[Warranty Date]
,[Expiration Date]
,[Package No_]
,[Bin Code]
,[Zone Code]
,[Action Type]
,[Whse_ Document Type]
,[Whse_ Document No_]
,[Whse_ Document Line No_]
,[Bin Ranking]
,[Cubage]
,[Weight]
,[Special Equipment Code]
,[Bin Type Code]
,[Breakbulk No_]
,[Original Breakbulk]
,[Breakbulk]
,[Cross-Dock Information]
,[Dedicated]
,[Over-Receipt Quantity]
,[Over-Receipt Code]
,[$systemId]
,[$systemCreatedAt]
,[$systemCreatedBy]
,[$systemModifiedAt]
,[$systemModifiedBy]
FROM
[CRONUS UK Ltd_$Warehouse Activity 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_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line]
LEFT JOIN
[CRONUS UK Ltd_$Location$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Location]
ON
[Warehouse Activity Line].[Location Code] = [Location].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Item Variant$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Item Variant]
ON
[Warehouse Activity Line].[Variant Code] = [Item Variant].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Shipping Agent$437dbf0e-84ff-417a-965d-ed2bb9650972$ext] AS [Shipping Agent]
ON
[Warehouse Activity Line].[Shipping Agent Code] = [Shipping Agent].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Shipment Method$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Shipment Method]
ON
[Warehouse Activity Line].[Shipment Method Code] = [Shipment Method].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Bin$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Bin]
ON
[Warehouse Activity Line].[Bin Code] = [Bin].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Special Equipment$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Special Equipment]
ON
[Warehouse Activity Line].[Special Equipment Code] = [Special Equipment].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Bin Type$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Bin Type]
ON
[Warehouse Activity Line].[Bin Type Code] = [Bin Type].[Code]
LEFT JOIN
[CRONUS UK Ltd_$Over-Receipt Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Over-Receipt Code]
ON
[Warehouse Activity Line].[Over-Receipt Code] = [Over-Receipt Code].[Code]
LEFT JOIN
[User] AS [User]
ON
[Warehouse Activity Line].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
[User] AS [User]
ON
[Warehouse Activity Line].[SystemModifiedBy] = [User].[User Security ID]
Show/hide columns in Warehouse Activity Line table
Field No. | Field Name | Field Caption | Class | Type | Length | SQL Column Name | SQL DataType |
---|---|---|---|---|---|---|---|
1 | Activity Type | Activity Type | Normal | Option | 4 | Activity Type | int |
Available options are:
| |||||||
2 | No. | No. | Normal | Code | 20 | No_ | nvarchar(40) |
3 | Line No. | Line No. | Normal | Integer | 4 | Line No_ | int |
4 | Source Type | Source Type | Normal | Integer | 4 | Source Type | int |
5 | Source Subtype | Source Subtype | Normal | Option | 4 | Source Subtype | int |
Available options are:
| |||||||
6 | Source No. | Source No. | Normal | Code | 20 | Source No_ | nvarchar(40) |
7 | Source Line No. | Source Line No. | Normal | Integer | 4 | Source Line No_ | int |
8 | Source Subline No. | Source Subline No. | Normal | Integer | 4 | Source Subline No_ | int |
9 | Source Document | Source Document | Normal | Option | 4 | Source Document | int |
Available options are:
| |||||||
11 | Location Code | Location Code | Normal | Code | 10 | Location Code | nvarchar(20) |
Key to join to the Location table.Show/hide example querySELECT [Warehouse Activity Line].[Location Code] ,[Location].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Location$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Location] ON [Warehouse Activity Line].[Location Code] = [Location].[Code] | |||||||
12 | Shelf No. | Shelf No. | Normal | Code | 10 | Shelf No_ | nvarchar(20) |
13 | Sorting Sequence No. | Sorting Sequence No. | Normal | Integer | 4 | Sorting Sequence No_ | int |
14 | Item No. | Item No. | Normal | Code | 20 | Item No_ | nvarchar(40) |
Key to join to the Item table.Show/hide example querySELECT [Warehouse Activity Line].[Item No_] ,[Item].[No_] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Item$437dbf0e-84ff-417a-965d-ed2bb9650972$ext] AS [Item] ON [Warehouse Activity Line].[Item No_] = [Item].[No_] | |||||||
15 | Variant Code | Variant Code | Normal | Code | 10 | Variant Code | nvarchar(20) |
Key to join to the Item Variant table.Show/hide example querySELECT [Warehouse Activity Line].[Variant Code] ,[Item Variant].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Item Variant$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Item Variant] ON [Warehouse Activity Line].[Variant Code] = [Item Variant].[Code] | |||||||
16 | Unit of Measure Code | Unit of Measure Code | Normal | Code | 10 | Unit of Measure Code | nvarchar(20) |
17 | Qty. per Unit of Measure | Qty. per Unit of Measure | Normal | Decimal | 12 | Qty_ per Unit of Measure | decimal(38,38) |
18 | Description | Description | Normal | Text | 100 | Description | nvarchar(200) |
19 | Description 2 | Description 2 | Normal | Text | 50 | Description 2 | nvarchar(100) |
20 | Quantity | Quantity | Normal | Decimal | 12 | Quantity | decimal(38,38) |
21 | Qty. (Base) | Qty. (Base) | Normal | Decimal | 12 | Qty_ (Base) | decimal(38,38) |
24 | Qty. Outstanding | Qty. Outstanding | Normal | Decimal | 12 | Qty_ Outstanding | decimal(38,38) |
25 | Qty. Outstanding (Base) | Qty. Outstanding (Base) | Normal | Decimal | 12 | Qty_ Outstanding (Base) | decimal(38,38) |
26 | Qty. to Handle | Qty. to Handle | Normal | Decimal | 12 | Qty_ to Handle | decimal(38,38) |
27 | Qty. to Handle (Base) | Qty. to Handle (Base) | Normal | Decimal | 12 | Qty_ to Handle (Base) | decimal(38,38) |
28 | Qty. Handled | Qty. Handled | Normal | Decimal | 12 | Qty_ Handled | decimal(38,38) |
29 | Qty. Handled (Base) | Qty. Handled (Base) | Normal | Decimal | 12 | Qty_ Handled (Base) | decimal(38,38) |
31 | Shipping Advice | Shipping Advice | Normal | Option | 4 | Shipping Advice | int |
Available options are:
| |||||||
34 | Due Date | Due Date | Normal | Date | 4 | Due Date | datetime |
39 | Destination Type | Destination Type | Normal | Option | 4 | Destination Type | int |
Available options are:
| |||||||
40 | Destination No. | Destination No. | Normal | Code | 20 | Destination No_ | nvarchar(40) |
42 | Shipping Agent Code | Shipping Agent Code | Normal | Code | 10 | Shipping Agent Code | nvarchar(20) |
Key to join to the Shipping Agent table.Show/hide example querySELECT [Warehouse Activity Line].[Shipping Agent Code] ,[Shipping Agent].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Shipping Agent$437dbf0e-84ff-417a-965d-ed2bb9650972$ext] AS [Shipping Agent] ON [Warehouse Activity Line].[Shipping Agent Code] = [Shipping Agent].[Code] | |||||||
43 | Shipping Agent Service Code | Shipping Agent Service Code | Normal | Code | 10 | Shipping Agent Service Code | nvarchar(20) |
44 | Shipment Method Code | Shipment Method Code | Normal | Code | 10 | Shipment Method Code | nvarchar(20) |
Key to join to the Shipment Method table.Show/hide example querySELECT [Warehouse Activity Line].[Shipment Method Code] ,[Shipment Method].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Shipment Method$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Shipment Method] ON [Warehouse Activity Line].[Shipment Method Code] = [Shipment Method].[Code] | |||||||
47 | Starting Date | Starting Date | Normal | Date | 4 | Starting Date | datetime |
50 | Qty. Rounding Precision | Qty. Rounding Precision | Normal | Decimal | 12 | Qty_ Rounding Precision | decimal(38,38) |
51 | Qty. Rounding Precision (Base) | Qty. Rounding Precision (Base) | Normal | Decimal | 12 | Qty_ Rounding Precision (Base) | decimal(38,38) |
900 | Assemble to Order | Assemble to Order | Normal | Boolean | 4 | Assemble to Order | tinyint |
901 | ATO Component | ATO Component | Normal | Boolean | 4 | ATO Component | tinyint |
6500 | Serial No. | Serial No. | Normal | Code | 50 | Serial No_ | nvarchar(100) |
6501 | Lot No. | Lot No. | Normal | Code | 50 | Lot No_ | nvarchar(100) |
6502 | Warranty Date | Warranty Date | Normal | Date | 4 | Warranty Date | datetime |
6503 | Expiration Date | Expiration Date | Normal | Date | 4 | Expiration Date | datetime |
6504 | Serial No. Blocked | Serial No. Blocked | FlowField | Boolean | 4 | ||
6505 | Lot No. Blocked | Lot No. Blocked | FlowField | Boolean | 4 | ||
6515 | Package No. | Package No. | Normal | Code | 50 | Package No_ | nvarchar(100) |
7300 | Bin Code | Bin Code | Normal | Code | 20 | Bin Code | nvarchar(40) |
Key to join to the Bin table.Show/hide example querySELECT [Warehouse Activity Line].[Bin Code] ,[Bin].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Bin$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Bin] ON [Warehouse Activity Line].[Bin Code] = [Bin].[Code] | |||||||
7301 | Zone Code | Zone Code | Normal | Code | 10 | Zone Code | nvarchar(20) |
7305 | Action Type | Action Type | Normal | Option | 4 | Action Type | int |
Available options are:
| |||||||
7306 | Whse. Document Type | Whse. Document Type | Normal | Option | 4 | Whse_ Document Type | int |
Available options are:
| |||||||
7307 | Whse. Document No. | Whse. Document No. | Normal | Code | 20 | Whse_ Document No_ | nvarchar(40) |
7308 | Whse. Document Line No. | Whse. Document Line No. | Normal | Integer | 4 | Whse_ Document Line No_ | int |
7309 | Bin Ranking | Bin Ranking | Normal | Integer | 4 | Bin Ranking | int |
7310 | Cubage | Cubage | Normal | Decimal | 12 | Cubage | decimal(38,38) |
7311 | Weight | Weight | Normal | Decimal | 12 | Weight | decimal(38,38) |
7312 | Special Equipment Code | Special Equipment Code | Normal | Code | 10 | Special Equipment Code | nvarchar(20) |
Key to join to the Special Equipment table.Show/hide example querySELECT [Warehouse Activity Line].[Special Equipment Code] ,[Special Equipment].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Special Equipment$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Special Equipment] ON [Warehouse Activity Line].[Special Equipment Code] = [Special Equipment].[Code] | |||||||
7313 | Bin Type Code | Bin Type Code | Normal | Code | 10 | Bin Type Code | nvarchar(20) |
Key to join to the Bin Type table.Show/hide example querySELECT [Warehouse Activity Line].[Bin Type Code] ,[Bin Type].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Bin Type$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Bin Type] ON [Warehouse Activity Line].[Bin Type Code] = [Bin Type].[Code] | |||||||
7314 | Breakbulk No. | Breakbulk No. | Normal | Integer | 4 | Breakbulk No_ | int |
7315 | Original Breakbulk | Original Breakbulk | Normal | Boolean | 4 | Original Breakbulk | tinyint |
7316 | Breakbulk | Breakbulk | Normal | Boolean | 4 | Breakbulk | tinyint |
7317 | Cross-Dock Information | Cross-Dock Information | Normal | Option | 4 | Cross-Dock Information | int |
Available options are:
| |||||||
7318 | Dedicated | Dedicated | Normal | Boolean | 4 | Dedicated | tinyint |
7319 | Over-Receipt Quantity | Over-Receipt Quantity | Normal | Decimal | 12 | Over-Receipt Quantity | decimal(38,38) |
7320 | Over-Receipt Code | Over-Receipt Code | Normal | Code | 20 | Over-Receipt Code | nvarchar(40) |
Key to join to the Over-Receipt Code table.Show/hide example querySELECT [Warehouse Activity Line].[Over-Receipt Code] ,[Over-Receipt Code].[Code] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [CRONUS UK Ltd_$Over-Receipt Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Over-Receipt Code] ON [Warehouse Activity Line].[Over-Receipt Code] = [Over-Receipt Code].[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 [Warehouse Activity Line].[$systemCreatedBy] ,[User].[User Security ID] FROM [CRONUS UK Ltd_$Warehouse Activity Line$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Warehouse Activity Line] LEFT JOIN [User] AS [User] ON [Warehouse Activity Line].[$systemCreatedBy] = [User].[User Security ID] | |||||||
2000000003 | SystemModifiedAt | Modified At | Normal | DateTime | 8 | $systemModifiedAt | datetime |
2000000004 | SystemModifiedBy | Modified By | Normal | GUID | 16 | $systemModifiedBy | uniqueidentifier |