Attendee

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

Table Type: Company

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

Table Number: 5199

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

Show/hide an example select of all columns

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

Show/hide an example select of all columns by name

SELECT
   [To-do No_]
   ,[Line No_]
   ,[Attendance Type]
   ,[Attendee Type]
   ,[Attendee No_]
   ,[Attendee Name]
   ,[Send Invitation]
   ,[Invitation Response Type]
   ,[Invitation Sent]
   ,[$systemId]
   ,[$systemCreatedAt]
   ,[$systemCreatedBy]
   ,[$systemModifiedAt]
   ,[$systemModifiedBy]
FROM
   [CRONUS UK Ltd_$Attendee$437dbf0e-84ff-417a-965d-ed2bb9650972]

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

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

Show/hide columns in Attendee table

Field No.Field NameField CaptionClassTypeLengthSQL Column NameSQL DataType
1To-do No. Primary Key SearchTask No.NormalCode20To-do No_nvarchar(40)
Key to join to the To-do table.

Show/hide example query

SELECT
       [Attendee].[To-do No_]
       ,[To-do].[No_]
FROM
       [CRONUS UK Ltd_$Attendee$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Attendee]
LEFT JOIN
       [CRONUS UK Ltd_$To-do$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [To-do]
              ON
                     [Attendee].[To-do No_] = [To-do].[No_]
2Line No. Primary Key SearchLine No.NormalInteger4Line No_int
3Attendance Type SearchAttendance TypeNormalOption4Attendance Typeint
Available options are:
  • “Required”
  • “Optional”
  • “To-do Organizer”
4Attendee Type SearchAttendee TypeNormalOption4Attendee Typeint
Available options are:
  • “Contact”
  • “Salesperson”
5Attendee No. SearchAttendee No.NormalCode20Attendee No_nvarchar(40)
6Attendee Name SearchAttendee NameNormalText100Attendee Namenvarchar(200)
7Send Invitation SearchSend InvitationNormalBoolean4Send Invitationtinyint
8Invitation Response Type SearchInvitation Response TypeNormalOption4Invitation Response Typeint
Available options are:
  • “None”
  • “Accepted”
  • “Declined”
  • “Tentative”
9Invitation Sent SearchInvitation SentNormalBoolean4Invitation Senttinyint
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
       [Attendee].[$systemCreatedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Attendee$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Attendee]
LEFT JOIN
       [User] AS [User]
              ON
                     [Attendee].[$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
       [Attendee].[$systemModifiedBy]
       ,[User].[User Security ID]
FROM
       [CRONUS UK Ltd_$Attendee$437dbf0e-84ff-417a-965d-ed2bb9650972] AS [Attendee]
LEFT JOIN
       [User] AS [User]
              ON
                     [Attendee].[$systemModifiedBy] = [User].[User Security ID]

Leave a Reply

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