Home > Sitecore OMS reports > Creating OMS Reports

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.

cover

Categories: Sitecore OMS reports
  1. January 6, 2010 at 12:36 pm | #1

    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.

    • February 5, 2010 at 10:02 am | #2

      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

  1. No trackbacks yet.

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out / Change )

Twitter picture

You are commenting using your Twitter account. Log Out / Change )

Facebook photo

You are commenting using your Facebook account. Log Out / Change )

Connecting to %s

Follow

Get every new post delivered to your Inbox.