I have two unrelated tables, Activity and Schedules, in an oracle database using Business Objects to query. I can pair up any activity with any schedule but I want it to be prompted in the query. The tables are as follows:
Activity_Name
Bodyweights
Dosing
Health Check
Schedule
Twice A Day
Daily
Weekly
And I'd like to be able to run a query with a prompt that for each activity prompts for a schedule. I'd end up with this as one possibility:
Activity Schedule
Activity Schedule
-------- --------
Bodyweights Weekly
Dosing Twice A Day
Health Check Twice A Day
The activity list would be one query with a prompt for available activities. I'd use those results in the Where clause of the second one and prompt for each schedule.