Book Image

Mastering Business Intelligence with MicroStrategy

By : Dmitry Anoshin, Himani Rana, Ning Ma, Neil Mehta
Book Image

Mastering Business Intelligence with MicroStrategy

By: Dmitry Anoshin, Himani Rana, Ning Ma, Neil Mehta

Overview of this book

Business intelligence is becoming more important by the day, with cloud offerings and mobile devices gaining wider acceptance and achieving better market penetration. MicroStrategy Reporting Suite is an absolute leader in the BI market and offers rich capabilities from basic data visualizations to predictive analytics. It lets you various delivery methods such as the Web, desktops, and mobiles. Using real-world BI scenarios, this book helps you to implement Business Analytics solutions in big e-commerce companies. It kicks off with MicroStrategy 10 features and then covers schema design models and techniques. Building upon your existing knowledge, the book will teach you advanced techniques for building documents and dashboards. It further teaches various graphical techniques for presenting data for analysis using maps, graphs, and advanced charts. Although MicroStrategy has rich functionality, the book will show how to customize it in order to meet your business requirements. You will also become familiar with the native analytical functions that will help you to maximize the impact of BI solutions with powerful predictive analytics. Furthermore, the book will focus on MicroStrategy Mobile Analytics along with data discovery and desktop capabilities such as connecting various data sources and building interactive dashboards. The book will also uncover best practices, troubleshooting techniques for MicroStrategy system administration, and also security and authentication techniques. Lastly, you will learn to use Hadoop for MicroStrategy reporting. By the end of the book, you will become proficient in evaluating any BI software in order to choose the best one that meets all business requirements.
Table of Contents (18 chapters)
Mastering Business Intelligence with MicroStrategy
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface

Web Beans


In MicroStrategy, Web Beans are simply Java beans. Beans are simply blocks of MicroStrategy data which enable you to bring MicroStrategy data onto the page.

Beans can have the following characteristics: name, type, source (including request parameters, name of enumeration constant, constant, preference, browser setting, and feature), and value.

Applications of Web Beans

Consider that your company wants to restrict the end report users from accessing the full functionality of the Report Execution page. Instead, end-users should be restricted to viewing the report results only. The steps to do this are as follows:

  1. Create a new plug-in called EmbedSingleReport

  2. Duplicate the report (Report Execution) page to create the beansExercise page

  3. Modify the first link in the exerciseLinks.jsp file so that it uses the following anchor tag:

          <a href="mstrWeb?pg=beansExercise&reportID=271209CD11D3EA25C000B3B2D8
          6C964F">Embed a Single Report on a Page</a> 
    
  4. Verify...