Permette di inviare degli archivi personalizzati per articolo.
È possibile costruire tabelle personalizzate di statistiche con a disposizioni 20 campi.
Sarà poi possibile configurare la loro visualizzazione tramite la configurazione delle schede articolo (per la configurazione vedere il capitolo Configurazioni Centralizzate).
# | COLONNA | DECRIZIONE | TIPO | LEN | NOTE |
---|---|---|---|---|---|
1 | CODICE | Codice Articolo | Stringa | 25 | |
2 | TABELLA | Codice tabella interna | Stringa | 50 | |
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 |
<?xml version="1.0" encoding="utf-8"?>
<TABELLA_MAGART_ARCHIVIO xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema"?>
<MAGART_ARCHIVIO>
<CODICE />
<TABELLA />
<campo1 />
<campo2 />
<campo3 />
<campo4 />
<campo5 />
<campo6 />
<campo7 />
<campo8 />
<campo9 />
<campo10 />
<campo11 />
<campo12 />
<campo13 />
<campo14 />
<campo15 />
<campo16 />
<campo17 />
<campo18 />
<campo19 />
<campo20 />
</MAGART_ARCHIVIO>
</TABELLA_MAGART_ARCHIVIO>
public partial class MAGART_ARCHIVIO { [Indexed(Name = "IX_PK_MAGART_ARCHIVIO", Order = 1, Unique = true), MaxLengthAttribute(25)] public string CODICE { get; set; } [Indexed(Name = "IX_PK_MAGART_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; } }