You are developing a form for customers to order tickets to events. There is an Event_Date item in the Tickets block of the form that has an LOV whose record group uses the following query.
SELECT event_name, event_date FROM events
ORDER BY event_date
In the Choose_Event block of the form, you want users to be able to select an event name into an Event_Name item. The event name will be selected from a LOV that is sorted by the name of the event. You do not want to modify either the LOV or the record group at run time. Which statement is true for the LOV and the record group as specified at design time?
A.
You must define a new LOV for the Choose_Event.Event_Name item that uses a different record group.
B.
You must define a new LOV for the Choose_Event.Event_Name item, but you can base it on the same record group.
C.
You can use the same LOV and record group for the Choose_Event.Event_Name item that you used for the Tickets.Event_Date item.
D.
You can use the same LOV for both items, but you should specify that each item must use a different record group for the LOV.