Operation Details
Description: Reads the location id and schedule id details for the slot.
Sterotype: ns
SQL
SELECT
  DailySchedule.locationID,
  DailySchedule.scheduleID
INTO
  :locationID,
  :scheduleID 
FROM
  DailySchedule,
  Slot 
WHERE Slot.slotID = :slotID 
  AND DailySchedule.scheduleID = Slot.scheduleID