Remit Address

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

Table Type: Company

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

Table Number: 2224

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 Remit Address can be queried.

Show/hide an example select of all columns

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

Show/hide an example select of all columns by name

SELECT
   [Code]
   ,[Vendor No_]
   ,[Name]
   ,[Name 2]
   ,[Address]
   ,[Address 2]
   ,[City]
   ,[Contact]
   ,[Phone No_]
   ,[Default]
   ,[Country_Region Code]
   ,[Fax No_]
   ,[Post Code]
   ,[County]
   ,[E-Mail]
   ,[Home Page]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972]

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

SELECT
   *
FROM
   [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
   [CRONUS UK Ltd_$Post Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Post Code]
      ON
         [Remit Address].[City] = [Post Code].[City]
LEFT JOIN
   [CRONUS UK Ltd_$Post Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Post Code]
      ON
         [Remit Address].[Post Code] = [Post Code].[Code]
LEFT JOIN
   [User] AS [User]
      ON
         [Remit Address].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [Remit Address].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in Remit Address table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1Code Primary Key SearchCodeNormalCode10Codenvarchar(20)
2Vendor No. Primary Key SearchVendor No.NormalCode20Vendor No_nvarchar(40)
Key to join to the Vendor table.

Show/hide example query

SELECT
       [Remit Address].[Vendor No_]
       ,[Vendor].[No_]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [CRONUS UK Ltd_$Vendor$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Vendor]
              ON
                     [Remit Address].[Vendor No_] = [Vendor].[No_]
3Name SearchNameNormalText100Namenvarchar(200)
4Name 2 SearchName 2NormalText50Name 2nvarchar(100)
5Address SearchAddressNormalText100Addressnvarchar(200)
6Address 2 SearchAddress 2NormalText50Address 2nvarchar(100)
7City SearchCityNormalText30Citynvarchar(60)
Key to join to the Post Code table.

Show/hide example query

SELECT
       [Remit Address].[City]
       ,[Post Code].[City]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [CRONUS UK Ltd_$Post Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Post Code]
              ON
                     [Remit Address].[City] = [Post Code].[City]
8Contact SearchContactNormalText100Contactnvarchar(200)
9Phone No. SearchPhone No.NormalText30Phone No_nvarchar(60)
10Default SearchDefault AddressNormalBoolean4Defaulttinyint
35Country/Region Code SearchCountry/Region CodeNormalCode10Country_Region Codenvarchar(20)
Key to join to the Country/Region table.

Show/hide example query

SELECT
       [Remit Address].[Country_Region Code]
       ,[Country/Region].[Code]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [CRONUS UK Ltd_$Country_Region$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Country/Region]
              ON
                     [Remit Address].[Country_Region Code] = [Country/Region].[Code]
84Fax No. SearchFax No.NormalText30Fax No_nvarchar(60)
91Post Code SearchZIP CodeNormalCode20Post Codenvarchar(40)
Key to join to the Post Code table.

Show/hide example query

SELECT
       [Remit Address].[Post Code]
       ,[Post Code].[Code]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [CRONUS UK Ltd_$Post Code$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Post Code]
              ON
                     [Remit Address].[Post Code] = [Post Code].[Code]
92County SearchStateNormalText30Countynvarchar(60)
102E-Mail SearchEmailNormalText80E-Mailnvarchar(160)
103Home Page SearchHome PageNormalText80Home Pagenvarchar(160)
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
       [Remit Address].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [User] AS [User]
              ON
                     [Remit Address].[$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
       [Remit Address].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Remit Address$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Remit Address]
LEFT JOIN
       [User] AS [User]
              ON
                     [Remit Address].[$systemModifiedBy] = [User].[User Security ID]

Show/hide tables related from Remit Address table

Leave a Reply

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