My List update on CSM Portal

Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎04-16-2021 09:05 AM
I would like to update the default filter for My Cases on our CSM Portal but I cannot find the appropriate place to update this information.
I have saved a new filter with the Opened By as a dynamic field but I cannot make this the default filter for the entire organization. (Image below for reference)
Any help would be appreciated!
Labels:
- Labels:
-
Multiple Versions
5 REPLIES 5
Options
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
‎06-04-2025 02:35 PM
Yes, I configured the Widget My list filters, so it only displays My cases a Actions Needed
(function() {
data.selectedFilter = $sp.getParameter('sel');
data.list = [
{
table: "sn_customerservice_case",
targetPageId: "csm_ticket",
view: "csp",
myListFilter: gs.getMessage("My Cases"),
query: "initiated_as_request=false^opened_byDYNAMIC90d1921e5f510100a9ad2572f2b477fe",
selectedFilter: "my_issues"
},
{
table: "sn_customerservice_case",
targetPageId: "csm_ticket",
view: "csp",
myListFilter: gs.getMessage("Action Needed"),
query: "stateIN6,18", // This matches the original logic
selectedFilter: "act_needed"
}
];
})();