MS- PayPal Transaction

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

Table Type: Company

Table Name: MS- PayPal Transaction
Database Table Name: CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972

Table Number: 7862

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 MS- PayPal Transaction can be queried.

Show/hide an example select of all columns

SELECT
   *
FROM
   [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972]

Show/hide an example select of all columns by name

SELECT
   [Account ID]
   ,[Transaction ID]
   ,[Transaction Status]
   ,[Transaction Date]
   ,[Transaction Type]
   ,[Currency Code]
   ,[Gross Amount]
   ,[Net Amount]
   ,[Fee Amount]
   ,[Payer E-mail]
   ,[Payer Name]
   ,[Payer Address]
   ,[Note]
   ,[Custom]
   ,[Invoice No_]
   ,[Response Date]
   ,[Details]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972]

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

SELECT
   *
FROM
   [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
   [CRONUS UK Ltd_$G_L Account$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [G/L Account]
      ON
         [MS- PayPal Transaction].[Account Id] = [G/L Account].[$systemId]
LEFT JOIN
   [CRONUS UK Ltd_$Transaction Type$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Transaction Type]
      ON
         [MS- PayPal Transaction].[Transaction Type] = [Transaction Type].[Code]
LEFT JOIN
   [CRONUS UK Ltd_$Currency$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Currency]
      ON
         [MS- PayPal Transaction].[Currency Code] = [Currency].[Code]
LEFT JOIN
   [User] AS [User]
      ON
         [MS- PayPal Transaction].[SystemCreatedBy] = [User].[User Security ID]
LEFT JOIN
   [User] AS [User]
      ON
         [MS- PayPal Transaction].[SystemModifiedBy] = [User].[User Security ID]

Show/hide columns in MS- PayPal Transaction table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1Account ID Primary Key SearchAccount IDNormalCode127Account IDnvarchar(254)
Key to join to the G/L Account table.

Show/hide example query

SELECT
       [MS- PayPal Transaction].[Account ID]
       ,[G/L Account].[$systemId]
FROM
       [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
       [CRONUS UK Ltd_$G_L Account$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [G/L Account]
              ON
                     [MS- PayPal Transaction].[Account ID] = [G/L Account].[$systemId]
2Transaction ID Primary Key SearchTransaction IDNormalText19Transaction IDnvarchar(38)
3Transaction Status SearchTransaction StatusNormalCode10Transaction Statusnvarchar(20)
4Transaction Date SearchTransaction DateNormalDateTime8Transaction Datedatetime
6Transaction Type SearchTransaction TypeNormalCode28Transaction Typenvarchar(56)
Key to join to the Transaction Type table.

Show/hide example query

SELECT
       [MS- PayPal Transaction].[Transaction Type]
       ,[Transaction Type].[Code]
FROM
       [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
       [CRONUS UK Ltd_$Transaction Type$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Transaction Type]
              ON
                     [MS- PayPal Transaction].[Transaction Type] = [Transaction Type].[Code]
7Currency Code SearchCurrency CodeNormalCode3Currency Codenvarchar(6)
Key to join to the Currency table.

Show/hide example query

SELECT
       [MS- PayPal Transaction].[Currency Code]
       ,[Currency].[Code]
FROM
       [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
       [CRONUS UK Ltd_$Currency$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Currency]
              ON
                     [MS- PayPal Transaction].[Currency Code] = [Currency].[Code]
8Gross Amount SearchGross AmountNormalDecimal12Gross Amountdecimal(38,38)
9Net Amount SearchNet AmountNormalDecimal12Net Amountdecimal(38,38)
10Fee Amount SearchFee AmountNormalDecimal12Fee Amountdecimal(38,38)
11Payer E-mail SearchPayer E-mailNormalText127Payer E-mailnvarchar(254)
12Payer Name SearchPayer NameNormalText127Payer Namenvarchar(254)
13Payer Address SearchPayer AddressNormalText100Payer Addressnvarchar(200)
14Note SearchNoteNormalText250Notenvarchar(500)
15Custom SearchCustomNormalText250Customnvarchar(500)
16Invoice No. SearchInvoice No.NormalCode20Invoice No_nvarchar(40)
101Response Date SearchResponse DateNormalDateTime8Response Datedatetime
200Details SearchDetailsNormalBLOB8Detailsimage
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
       [MS- PayPal Transaction].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
       [User] AS [User]
              ON
                     [MS- PayPal Transaction].[$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
       [MS- PayPal Transaction].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$MS- PayPal Transaction$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [MS- PayPal Transaction]
LEFT JOIN
       [User] AS [User]
              ON
                     [MS- PayPal Transaction].[$systemModifiedBy] = [User].[User Security ID]

Show/hide tables related from MS- PayPal Transaction table

Leave a Reply

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