When a booking is initiated using ResourceXpress via a Room Screen, Qubi, Kiosk or Map the booking is created based on specific parameters defined in EMS. To enable RX to use the correct options various SQL IDs need to be retrieved and defined in the application.
SQL IDs for the following options in EMS will be required to complete the configuration:
EMS Option | Description | EMS Database Table |
---|
Setup Type | This defines the booking setup type as specified in the EMS Desktop Client Configuration - Facilities - Setup Types | dbo.tblSetupType |
Event Type | The defines the booking event type as specified in the EMS Desktop Client Configuration - Other - Event Types | dbo.tblEventType |
Status | The defines the booking event type as specified in the EMS Desktop Client Configuration - Administration - Statuses | dbo.tblStatus |
Group | This defines the EMS Group account to use for non authenticated device bookings and will be shown as the booking organiser. | dbo.tblGroup |
Example
Running the below query in SQL Server Management Studio against the EMS database
select ID, Description, Active, AllowWebRequest from dbo.tblsetuptype
yields the following results
To enable ResourceXpress to create bookings using the Conference setup type the ID 1 would be defined in the application.
SQL IDs for the remaining 3 options can be obtained the same way by querying the relevant table in the EMS database