~xrg/openobject-doc/trunk-xrg

« back to all changes in this revision

Viewing changes to i18n/es/source/bi/architecture/openobject_module.rst

  • Committer: TruongSinh Tran
  • Date: 2009-07-17 18:59:45 UTC
  • Revision ID: truongsinh@vipescoserver-20090717185945-ajjp3zso6xh5jddm
[FIX]private issue

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
 
 
2
.. i18n: Introduction to the OpenObject Module
 
3
.. i18n: =====================================
 
4
 
 
5
Introduction to the OpenObject Module
 
6
=====================================
 
7
 
 
8
.. i18n: The OLAP module is used in validating , running  and formatting the output of MDXExamples
 
9
 
 
10
The OLAP module is used in validating , running  and formatting the output of MDXExamples
 
11
 
 
12
.. i18n: The general flow is of OLAP module is shown in following diagram:
 
13
 
 
14
The general flow is of OLAP module is shown in following diagram:
 
15
 
 
16
.. i18n: .. image::  images/Cube_olap_schema.png
 
17
 
 
18
.. image::  images/Cube_olap_schema.png
 
19
 
 
20
.. i18n: Explanation of the components
 
21
.. i18n: -----------------------------
 
22
 
 
23
Explanation of the components
 
24
-----------------------------
 
25
 
 
26
.. i18n: Web-Services
 
27
.. i18n: ++++++++++++
 
28
 
 
29
Web-Services
 
30
++++++++++++
 
31
 
 
32
.. i18n: This is the layer provided by the base of Open  ERP, protocols: NET-RPC (fast binary), XML-RPC, over HTTP or HTTPS
 
33
 
 
34
This is the layer provided by the base of Open  ERP, protocols: NET-RPC (fast binary), XML-RPC, over HTTP or HTTPS
 
35
 
 
36
.. i18n: Services
 
37
.. i18n: ++++++++
 
38
 
 
39
Services
 
40
++++++++
 
41
 
 
42
.. i18n: Layer provided by Open  ERP that provides: authentification (normal/ldap), users management, access rights, workflows, module management, ...
 
43
 
 
44
Layer provided by Open  ERP that provides: authentification (normal/ldap), users management, access rights, workflows, module management, ...
 
45
 
 
46
.. i18n: MDX Parser
 
47
.. i18n: ++++++++++
 
48
 
 
49
MDX Parser
 
50
++++++++++
 
51
 
 
52
.. i18n: 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. 
 
53
 
 
54
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. 
 
55
 
 
56
.. i18n: MDX Validator
 
57
.. i18n: +++++++++++++
 
58
 
 
59
MDX Validator
 
60
+++++++++++++
 
61
 
 
62
.. i18n: 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.
 
63
 
 
64
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.
 
65
 
 
66
.. i18n: MDX Runner
 
67
.. i18n: ++++++++++
 
68
 
 
69
MDX Runner
 
70
++++++++++
 
71
 
 
72
.. i18n: It will run the query on the basis of objects using SQLAlchemy and return different subsets.
 
73
.. i18n: On the basis of it the cube is virtually made in the form of matrix.
 
74
.. i18n: And it fills the cube by values using axis mapping
 
75
 
 
76
It will run the query on the basis of objects using SQLAlchemy and return different subsets.
 
77
On the basis of it the cube is virtually made in the form of matrix.
 
78
And it fills the cube by values using axis mapping
 
79
 
 
80
.. i18n: RDBMS connectors
 
81
.. i18n: ++++++++++++++++
 
82
 
 
83
RDBMS connectors
 
84
++++++++++++++++
 
85
 
 
86
.. i18n: The layer provided by SQL Alchemy, it supports: mysql, postgresql, oracle, ...
 
87
 
 
88
The layer provided by SQL Alchemy, it supports: mysql, postgresql, oracle, ...
 
89
 
 
90
.. i18n: The schema definition is in the Open  ERP database.
 
91
 
 
92
The schema definition is in the Open  ERP database.