Permette di inviare degli archivi personalizzati per cliente.
È possibile costruire tabelle personalizzate di statistiche con a disposizioni 20 campi.
Sarà poi possibile configurare la loro visualizzazione tramite la configurazione delle schede cliente (per la configurazione vedere il capitolo Configurazioni Centralizzate…).
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE | Codice Cliente | Stringa | 8 | |
2 | TABELLA | Codice tabella interna | Stringa | 50 | Identificativo tabella interna. Esempio: se voglio identificare i fatturati mensili identifico la tabella con FM. |
3 | campo1 | Campo Libero 1 | Stringa | 100 | |
4 | campo2 | Campo Libero 2 | Stringa | 100 | |
5 | campo3 | Campo Libero 3 | Stringa | 100 | |
6 | campo4 | Campo Libero 4 | Stringa | 100 | |
7 | campo5 | Campo Libero 5 | Stringa | 100 | |
8 | campo6 | Campo Libero 6 | Stringa | 100 | |
9 | campo7 | Campo Libero 7 | Stringa | 100 | |
10 | campo8 | Campo Libero 8 | Stringa | 100 | |
11 | campo9 | Campo Libero 9 | Stringa | 100 | |
12 | campo10 | Campo Libero 10 | Stringa | 100 | |
13 | campo11 | Campo Libero 11 | Stringa | 100 | |
14 | campo12 | Campo Libero 12 | Stringa | 100 | |
15 | campo13 | Campo Libero 13 | Stringa | 100 | |
16 | campo14 | Campo Libero 14 | Stringa | 100 | |
17 | campo15 | Campo Libero 15 | Stringa | 100 | |
18 | campo16 | Campo Libero 16 | Stringa | 100 | |
19 | campo17 | Campo Libero 17 | Stringa | 100 | |
20 | campo18 | Campo Libero 18 | Stringa | 100 | |
21 | campo19 | Campo Libero 19 | Stringa | 100 | |
22 | campo20 | Campo Libero 20 | Stringa | 100 |
'C0000100','FM','100','200','300','400','500','600','700','800','900','1000','1100','1200','1300','1400','1500','1600','1700','1800','1900','2000' 'C0001400','FM','4100','4200','4300','4400','4500','4600','4700','4800','4900','41000','41100','41200','41300','41400','41500','41600','41700','41800','41900','42000' 'C0000100','EC','8100','8200','8300','8400','8500','8600','8700','8800','8900','81000','81100','1200','1300','1400','1500','1600','1700','1800','1900','2000'
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_ANAGRAFE_ARCHIVIO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<ANAGRAFE_ARCHIVIO>
<CODICE />
<TABELLA />
<campo1 />
<campo2 />
<campo3 />
<campo4 />
<campo5 />
<campo6 />
<campo7 />
<campo8 />
<campo9 />
<campo10 />
<campo11 />
<campo12 />
<campo13 />
<campo14 />
<campo15 />
<campo16 />
<campo17 />
<campo18 />
<campo19 />
<campo20 />
</ANAGRAFE_ARCHIVIO>
</TABELLA_ANAGRAFE_ARCHIVIO>
public partial class ANAGRAFE_ARCHIVIO { [Indexed(Name = "IX_PK_ANAGRAFE_ARCHIVIO", Order = 1, Unique = true), MaxLengthAttribute(8)] public string CODICE { get; set; } [Indexed(Name = "IX_PK_ANAGRAFE_ARCHIVIO", Order = 2, Unique = true), MaxLengthAttribute(50)] public string TABELLA { get; set; } [MaxLengthAttribute(100)] public string campo1 { get; set; } [MaxLengthAttribute(100)] public string campo2 { get; set; } [MaxLengthAttribute(100)] public string campo3 { get; set; } [MaxLengthAttribute(100)] public string campo4 { get; set; } [MaxLengthAttribute(100)] public string campo5 { get; set; } [MaxLengthAttribute(100)] public string campo6 { get; set; } [MaxLengthAttribute(100)] public string campo7 { get; set; } [MaxLengthAttribute(100)] public string campo8 { get; set; } [MaxLengthAttribute(100)] public string campo9 { get; set; } [MaxLengthAttribute(100)] public string campo10 { get; set; } [MaxLengthAttribute(100)] public string campo11 { get; set; } [MaxLengthAttribute(100)] public string campo12 { get; set; } [MaxLengthAttribute(100)] public string campo13 { get; set; } [MaxLengthAttribute(100)] public string campo14 { get; set; } [MaxLengthAttribute(100)] public string campo15 { get; set; } [MaxLengthAttribute(100)] public string campo16 { get; set; } [MaxLengthAttribute(100)] public string campo17 { get; set; } [MaxLengthAttribute(100)] public string campo18 { get; set; } [MaxLengthAttribute(100)] public string campo19 { get; set; } [MaxLengthAttribute(100)] public string campo20 { get; set; } }