Creating OMS Reports
Report Designer Cookbook Published
Partly as a result of the work involved in creating the blogs on this site, I am pleased to announce that I have completed the first piece of Sitecore documentation on editing and creating reports in the Online Marketing Suite (OMS).
The full document is available for download in PDF format from the Sitecore Developers Network (SDN).
The document is aimed at anyone working with OMS reports from a marketer to a .NET developer and includes step-by-step instructions on topics such as:
- Creating bar and pie charts
- Understanding the analytics database
- Creating a report from scratch
- Designing a report layout
- Creating report filters
Click on the image below to go to the Sitecore Developers Network.
Categories: Sitecore OMS reports
Hi,
i have a query which may be not related to post blogs.
I want to have top Site search result so that i can show the most popular searches across my sites. For this i already create control for that which is as follows:-
//searched keyword extract from querystring
if (Request.QueryString["query"] != null)
{
string query = Request.QueryString["query"].ToString();
if (query != null)
{
if (!Sitecore.Analytics.AnalyticsTracker.IsActive)
{
return;
}
Sitecore.Analytics.AnalyticsTracker analyticsTracker = Sitecore.Analytics.AnalyticsTracker.Current;
if (analyticsTracker == null || analyticsTracker.PreviousPage == null || analyticsTracker.CurrentPage == null)
{
return;
}
Sitecore.Analytics.Extensions.AnalyticsPageExtensions.Searches.Search(analyticsTracker.PreviousPage, query, 1);
analyticsTracker.Cancel();
}
}
this control result that my searches are being logged in Sitecore analytics which i may watch using Site searches, but now i want those result or you statistics so that i may use it for own purpose.
May be you help us, any kind of help is appreciated.
Hi Vishal,
Sorry about my late response to your question but this is a bit beyond my scope of knowledge.
If you haven’t already solved the problem, maybe you could try looking for a solution in the SDN forum?
http://sdn.sitecore.net/Forum.aspx?
Best Regards,
Chris