Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

MBV Display Name: EventInformation
View: EventInfo
Fields:

Code Block
languagesql
CREATE VIEW [dbo].vwEventInformations
AS
SELECT 
    m.ID  'ID',
    m.MeetingTitle  'EventName',


   
m.StartDate  'StartDate',


   
m.EndDate  'EndDate', 


   
e.FirstLast  'PlannerName', 


   
CASE WHEN e.WorkAreaCode IS NULL THEN  e.WorkPhone else '(' + e.WorkAreaCode + ')' + e.WorkPhone end   'PlannerPhone',  


   
e.HomeFax  'PlannerFax', 


   
e.WebPage  'PlannerURL', 


   
e.Email1  'PlannerEmail', 


   
e.FirstLast  'PlannerContactName', 


   
m1.MeetingID  'MeetingID',


   
m.VerboseDescription  'Description', 


   
p.WebProductPage  'Website'


FROM 


   
Meeting m


   
LEFT OUTER JOIN 


       
vwEmployees    e 


       
ON 


            m.CoordinatorID=e.ID


   
LEFT OUTER JOIN 


       
vwMeetings    m1 


       
ON 


            m.ID=m1.ID


   
LEFT OUTER JOIN 


       
Product    p 


       
ON 


            m.ProductID=p.ID 

 

Anchor
_location
_location
Event Location

MBV Display Name: EventLocation
View: EventLocation
Fields:

Code Block
 

Anchor
_rooms
_rooms
Event Rooms

MBV Display Name: Room
View: EventRooms
Fields:

Code Block
 

Anchor
_agenda
_agenda
Event Agenda

MBV Display Name: EventSessions
View: EventSessions
Fields:

Code Block
 

Anchor
_sponsors
_sponsors
Event Sponsors

MBV Display Name: Sponsors
View: EventSponsors
Fields:

Code Block
 

Anchor
_attendees
_attendees
Event Attendees

MBV Display Name: Attendees
View: EventAttendees
Fields:

Code Block
 

Anchor
_exhibit
_exhibit
Event Exhibitors

MBV Display Name: Exhibitor
View: EventExhibitors
Fields:

Code Block
 

Anchor
_speakers
_speakers
Event Speakers

MBV Display Name: Speakers
View: EventSpeakers
Fields:

Code Block
 

Anchor
_sessions
_sessions
Event Sessions

MBV Display Name: Sessions
View: EventSessions
Fields:

Code Block
 

Anchor
_genInfo
_genInfo
Event General Information

MBV Display Name: GeneralInfo
View: EventGeneralInfo
Fields:

Code Block
 

Anchor
_tracks
_tracks
Event Tracks

...