E105
Financial Pack
Properties Sources: prospetto
- Code
E105- Description
- Financial Pack
- Web opening
C- Type flags
- Input
- Groups
- E1
Structure
Sources: prospetto_xml
Form parameters
4
▾
Form filters
4 dims
▾
ToC
Template04 · 0 matrices
Income Statement
Template00 · 1 matrix
Income Statement
CPM
Filters
Rows
CONTO
24
| Hierarchy / FST | Item | Type | TGKML | |
|---|---|---|---|---|
| 010 | › | 010 | fixed | |
| 010 | › | 015 | fixed | |
| 010 | › | 020 | fixed | |
| 010 | › | 025 | fixed | |
| 010 | › | 030 | fixed | |
| 010 | › | 035 | fixed | |
| 010 | › | 040 | fixed | |
| 010 | › | 045 | fixed | |
| 010 | › | 050 | fixed | |
| 010 | › | 055 | fixed | |
| 010 | › | 060 | fixed | |
| 010 | › | 065 | fixed | |
| 010 | › | 070 | fixed | |
| 010 | › | 075 | fixed | |
| 010 | › | 080 | fixed | |
| 010 | › | 085 | fixed | |
| 010 | › | 090 | fixed | |
| 010 | › | 095 | fixed | |
| 010 | › | 100 | fixed | |
| 010 | › | 105 | fixed | |
| 010 | › | 110 | fixed | |
| 010 | › | 111 | fixed | |
| 010 | › | 112 | fixed | |
| 010 | › | 115 | fixed |
Balance Sheet
Template01 · 1 matrix
Indirect Cash Flow | Actuals
Template02 · 1 matrix
Direct Cashflow | Budget
Template03 · 2 matrices
CASH FROM BS
CPM
KPIs
Template05 · 4 matrices
OPEX
CPM
EBIT Per Month
CPM
EE Matrix
CPM
Fixed Operating Expense
Template06 · 1 matrix
Fixed Opex
CPM
Filters
LUNPER
1
Rows
Queries 1
Sources: prospetto_xml
Transactional Details
SQL
▾
Query00
SELECT "Local_GL_Account",
"Local_GL_Description",
"Master_Account",
"Invoice_Number",
"Invoice_Date",
"Customer/Supplier",
amount
FROM (
SELECT campo1 AS "Year",
campo14 AS "Scenario",
campo2 AS "Month",
campo3 AS "Entity",
campo4 AS "Local_GL_Account",
campo15 AS "Master_Account",
campo5 AS "Local_GL_Description",
campo6 AS "Cost_Center",
campo7 AS "Product",
campo11 AS "Customer/Supplier",
campo9 AS "Invoice_Number",
CASE WHEN LENGTH(campo10) > 0 THEN
TO_CHAR(TO_DATE('01011900','MMDDYYYY')+TO_NUMBER(campo10,'99999')*INTERVAL '1 Day', 'MM/DD/YYYY')
ELSE ''
END AS "Invoice_Date",
campo11 AS "Supplier",
CAST (REPLACE(campo12,',','.') AS NUMERIC(20,2)) AS amount
FROM map_dati_trasformati
WHERE cod_mappatura='05'
AND cod_import='010'
AND campo1='2018'
AND campo2='12'
AND campo3=${$Entity.code}
AND campo6='CC_500'
AND campo7='PD_500'
AND campo8='CM_500'
AND campo15=${$Account.code}
AND campo14= ${$Scenario.code}
) a
UNION ALL
SELECT 'Total',
'',
'',
'',
'',
'',
SUM(amount) AS amount
FROM (
SELECT CAST (REPLACE(campo12,',','.') AS NUMERIC(20,2)) AS amount
FROM map_dati_trasformati
WHERE cod_mappatura='05'
AND cod_import='010'
AND campo1='2018'
AND campo2='12'
AND campo3=${$Entity.code}
AND campo6='CC_500'
AND campo7='PD_500'
AND campo8='CM_500'
AND campo15=${$Account.code}
AND campo14= ${$Scenario.code}
) a