...
- Right-click the Activity Completion Domain and select Edit. The Edit Domain page opens.
- Underneath the Domain Design heading, click the Edit withDomain Designer link. The Domain Designer opens to the Display tab.
- Navigate to the Derived Tables tab.
- In the Query ID field, enter the name "proper_act_name".
In the Query field, you will need to enter a series of select statements based on the following formula:
Code Block language sql theme Eclipse select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from /*LMS TABLE*/ t join mdl_modules m on m.name = '/*NAME*/' union
Note the two variables highlighted in this select statement:/*LMS TABLE*/ : In place of this variable, insert the proper LMS module table name. For example, 'mdl_lesson' or 'mdl_quiz'.
/*NAME*/ : In place of this variable, insert the name of the Activity. For example, 'lesson' or 'quiz'.
To start, you can begin by entering the following sample Derived Table. You will likely find this series of select statements to miss some of your custom modules and name several that you do not use. Enter the following query into the Query field:
Code Block language sql theme Eclipse linenumbers true select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_assign t join mdl_modules m on m.name = 'assign' union select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_assignment t join mdl_modules m on m.name = 'assignment' union select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_book t join mdl_modules m on m.name = 'book' union select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_chat t join mdl_modules m on m.name = 'chat' union select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_choice t join mdl_modules m on m.name = 'choice' union select m.id as moduleid, m.name as moduletype, t.id as instanceid, t.name as instancename, t.course as courseid from mdl_data t join mdl_modules m on m.name = 'data'
- Click Run Query.
- If there are tables referenced in this query that do not exist in your LMS, you will receive an error similar to that shown in the following image:
If you receive this error, simply remove the offending statement from the query and run it again. - If your query runs successfully, you will need to select from the returned results. Select the entire list by holding Command/Shift/CTRL and selecting each field:
- Click Save Table. Your new Derived Table will appear in the Available Objects panel with the unique Derived Table / Calculated Field identifier.
- Navigate to the Joins tab and create the following joins:
- From the Left Table, select the course field from the mdl_course_modules table, then from the Right Table select the courseid field from the proper_act_name Derived Table. Click the Left Outer Join button.
- From the Left Table, select the module field from the mdl_course_modules table, then from the Right Table select the moduleid field from the proper_act_name Derived Table. Click the Left Outer Join button.
- A modal window appears, notifying you that the tables have already been joined, and that a composite key will be created. Click the OK button to complete your second join:
- From the Left Table, select the instance field from the mdl_course_modules table, then from the Right Table select the instanceid field from the proper_act_name Derived Table. Click the Left Outer Join button.
- Click the OK button in the modal window that appears.
- Navigate to the Display tab.
- In the Resources panel, select to View as: Join Tree.
- Expand JoinTree_1, then expand the table:
- Select the instanceid field and drag it into the Activity Completions set in the Sets and Items panel.
- In the Sets and Items panel, select the newly added instanceid item.
- In the Properties panel, click the Edit button. The property fields of the instanceid item become editable.
- In the Label field, rename the instance item to "Proper Activity Name", for presentation purposes.
- Click the Save button to save your changes to the Proper Activity Name item.
- Click the OK button to save your changes in the Domain Designer and return to the Edit Domain page.
- Under the Required Information heading, rename the Activity Completions Domain in the Name field, in order to avoid confusing it with the Public Activity Completions Domain. We will call this Domain the "Activity Completions Domain - Proper Names".
- To save your changes to the Domain, click the Submit button.