ContributionsMost RecentNewest TopicsMost LikesSolutionsRe: Get list of Dashboards and Published Users/UserGroups Hi Hamza, Thank you for quick response. Could you please help us in RESTAPI and how to read dashboards and to whom they are published. Thanks Nazeer Get list of Dashboards and Published Users/UserGroups Hi Team, We need a help, can we retrieve the Dashboards and list of users/UserGroups which they are published. I have nearly 100 Dashboards, how can we get this details in Windows. Thanks Nazeer Update Dashboard Date filter from selected Date to Last 365 days Hi Team, We have requirement where we need to update dashboard date filter dynamically from selected date to Last 365 days from the date selected. We have a working code for windows, we are looking the same for Linux, attaching the windows code below, please help in fixing. var TABLE = "tablename"; var COLUMN = "columnname"; var COUNT = 365; var max = null; dashboard.on("widgetbeforequery", function(d, a) { var item = a.query.metadata.find(function(i) { return i.panel === "scope" && $$get(i, "jaql.table") === TABLE && $$get(i, "jaql.column") === COLUMN }); var title = $$get(item, "jaql.title"); //debugger; if (title == "Date") { var selopt, unselopt, selrng; try { selopt = $$get(item,"jaql.filter.members"); } catch (e) { } try { unselopt = $$get(item,"jaql.filter.filter.exclude.members"); } catch (e) { } try { selrng = item.jaql.filter.to; } catch(e) { } var fItems=[], dItems=[]; if(selopt) { for(i=0;i<selopt.length;i++) { fItems.push(moment(selopt[i]).toISOString().slice(0,10)); } } if(unselopt) { for(i=0;i<unselopt.length;i++) { dItems.push(moment(unselopt[i]).toISOString().slice(0,10)); } } if(dItems.length>0) { for(i=0; i<dItems.length; i++) { var fl = fItems.length; for(j=0;j<fI;j++) { if(fItem[j]==dItem[i]) { fItem.splice(j,1); --fl; } } } } if(fItems.length>0) { fItems = fItems.sort(function(a,b) {return moment(a) - moment(b);}); max = fItems[fItems.length-1]; } else if(selrng) { max = selrng; } } else { // replacing members with last/next delete item.jaql.filter.from; delete item.jaql.filter.members; item.jaql.filter.last = { offset: 0, count: 365, anchor: max }; } }); Thanks Naz Freezing columns while scrolling in Pivot2 Linux Hi Team, Can anyone help on freezing first column of pivot in linux while scrolling. Thanks Nazeer AccumulateBy with Connection change Hi Team, I have cube with 800M rows and it is currently building incrementally. I got scenario where my DB source upgraded and I should change my connectivity of cube. What should happens if build a schema build? will my build bring only latest data or do we need to go with a full build? How we can avoid complete build? Please help to understand what will happen to accumulate build when we change the connection string. Thanks NH Highlight Max and Min values of a Line chart using JS or Formula Hi Team, I need a hep, I have a line chart with one series and I need to highlight Max and Min values in the same chart. Could you please help me how to achieve this. Thanks SNH