-
Open the Run MQL window:
-
From the compass, select Collaboration and
Approvals.
-
In the navigation pane, click .
To run an MQL command, enter the command in the
MQL Command box and click Run
or press Enter.
- To set the context for the MQL session, run this command:
set context user creator; - Print the details of the Issue or Resolved To relationship:
print relationship "Issue";
print relationship "Resolved To"; Check the to list to verify that the type you want to add is not already defined. - Add the required type:
modify relationship "Issue" to add type <TYPENAME>; where <TYPENAME> is the symbolic name of the type you want to add. When creating an Issue or filling in the Resolved By in the app,
the types added will be available for selection. -
If you want to access Issues in the context of the newly added
types (for the Issue relationship only, not if you added a type to the Resolved To relationship), add the category to the menu tree for that type. The type must already have a tree menu defined.
modify menu type_<TYPENAME> add command ContextIssueListPage;
|