~openerp-community/openobject-doc/6.1

« back to all changes in this revision

Viewing changes to source/bi/openobject_module/openobject_module.rst

  • Committer: TruongSinh Tran
  • Date: 2009-07-19 19:02:35 UTC
  • Revision ID: truongsinh@vipescoserver-20090719190235-fu3bxcrbpvwuk5h7
[FIX] build_i18n.py .. raw:: html

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Introduction to the OpenObject Module
 
2
=====================================
 
3
 
 
4
 
 
5
The OLAP module is used in validating , running  and formatting the output of MDXExamples
 
6
 
 
7
The general flow is of OLAP module is shown in following diagram:
 
8
 
 
9
 
 
10
.. image::  images/Cube_olap_schema.png
 
11
 
 
12
 
 
13
Explanation of the components
 
14
-----------------------------
 
15
 
 
16
Web-Services
 
17
++++++++++++
 
18
 
 
19
This is the layer provided by the base of Open  ERP, protocols: NET-RPC (fast binary), XML-RPC, over HTTP or HTTPS
 
20
 
 
21
Services
 
22
++++++++
 
23
 
 
24
Layer provided by Open  ERP that provides: authentification (normal/ldap), users management, access rights, workflows, module management, ...
 
25
 
 
26
MDX Parser
 
27
++++++++++
 
28
 
 
29
It parses the MDX query and convert it in the form of python objects. It uses pyparsing module of python to do this . It split the query in form of objects of axis, level, sub level, slicer (if any) and measures. 
 
30
 
 
31
 
 
32
MDX Validator
 
33
+++++++++++++
 
34
 
 
35
It parse all the objects created and map it to the browse object ofOpen  ERP resource. For example, the axis object will receive a link to the Open  ERP browse record on the related olap.axis object.
 
36
 
 
37
MDX Runner
 
38
++++++++++
 
39
 
 
40
It will run the query on the basis of objects using SQLAlchemy and return different subsets.
 
41
On the basis of it the cube is virtually made in the form of matrix.
 
42
And it fills the cube by values using axis mapping
 
43
 
 
44
RDBMS connectors
 
45
++++++++++++++++
 
46
 
 
47
The layer provided by SQL Alchemy, it supports: mysql, postgresql, oracle, ...
 
48
 
 
49
The schema definition is in the Open  ERP database.
 
50
 
 
51