IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Voir le flux RSS

Au Pied Levé - À Main Levée

I-3.1.3. Ex&Co Écrans

Noter ce billet
par , 01/04/2020 à 10h20 (242 Affichages)
APL-AML est une monographie fragmentée en plusieurs billets pour des raisons de volume.
Un billet SYNOPSIS et un billet SOMMAIRE agrègent tous les billets du blog via des liens hypertextes.

■ ■ ■ SOMMAIRE DU BILLET ■ ■ ■

  • Structure d’accueil
  • DBA_CEC
Structure d’accueil

La structure d’accueil d’un écran est relativement simple et peut se résumer en :
  • Définition des écrans
  • Liste des tables utilisées
  • Définition des attributs de chaque table
  • Instructions

Le source d’un écran, spécifique du SGBD/R « Informix ESQL », n’apportera rien aux adeptes d’autres langages, ce n’est pas l’objectif. Ce n’est même pas du 4GL, il n’y a pas de boîtes de dialogue qui transforment les gestionnaires en assistés-cliqueurs. Concernant la fonctionnalité de l’IHM, tout est dans l’épure ergonomique du mode caractère et la convivialité. Concernant la programmation, tout est dans les règles de mise en page et les commentaires.

Cet écran montre simplement la cohérence, la qualité, la rigueur, la lisibilité des développements pourtant réalisés dans un contexte APL-AML.

DBA_CEC

L’installation du serveur (système Unix SCO, SGBD Informix), terminée le vendredi 31 janvier, cet écran de saisie des candidatures a été programmé le lendemain, soit le samedi 1er février. Le dimanche a été consacré à l’installation des postes de travail (un dizaine de terminaux passifs) et le lundi matin, après la présentation d’un embryon de menu et un petit cours sur l’utilisation des touches de fonction, les gestionnaires commençaient la saisie des candidatures, lesquelles s’empilaient sur leur bureau depuis presque quinze jours.

Cet écran de 2.174 lignes et 49.222 caractères n’était évidemment pas aussi sophistiqué au départ. Il s’est amélioré au fil du temps et des spécificités des nouveaux concours à prendre en compte.

Paramétré pour le DBA, cet écran est exactement le même que ceux, utilisés par les gestionnaires.

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
{------------------------------------------------------------------------------}
{
DBA_CEC    : Candidatures examens-concours
AUTEUR     : IFA2377
DATE       : 1er Février 1992
}
{------------------------------------------------------------------------------}

{
┌──────────────────────────────────────────────────────────────────────────────┐
│- [TTT]=[DBA]=> Privilèges DBA  (voir ligne flaguée "#######################")│
│       =[MAJ]=> Privilèges MAJ  (voir ligne flaguée "#######################")│
│       =[CEC]=> Sans privilèges (voir ligne flaguée "#######################")│
└──────────────────────────────────────────────────────────────────────────────┘
                           ┌─────────────────────────┐
┌──────────────────────────┤ Enchainement des écrans ├─────────────────────────┐
│                          └─────────────────────────┘                         │
│     ┌─────────────┐                                                          │
│     │     pec     │                             pec = Personnes Ex&Co        │
│     └──.───────┬──┘                                                          │
│  Master│       │Detail                                                       │
│     ┌──┴───────*──┐         Table                                            │
│     │       cec   ├──────────────┐              cec = Candidatures Ex&Co     │
│     └─────────────┘              │                                           │
│                                  │                                           │
│                           ┌──────┴──────┐                                    │
│                           │      pm     │        pm = Pièces Manquantes      │
│                           └──────┬──────┘                                    │
│                                  │Table                                      │
│                           ┌──────┴──────┐                                    │
│                           │      rc     │        rc = Refus d'autorisation   │
│                           └─────────────┘             de Concourir           │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘
}

database concours

screen

{
┌N°───────┐  ┌M..┐┌Nom de naissance────┐┌Etabl.──┐┌─────Type d'établissement───┐
├─[APIM ]─┘  [A3 ][A4                  ][AET1    ][ATE][ALTE                   ]
│Nom d'usage :    [A5                  ][AET2                                  ]
│1er  Prénom :    [A6                  ][AET3                                  ]
│2ème Prénom :    [A7                  ][AET4                                  ]
│Téléphone   :    [A8                  ][AET5 ][AET6                           ]
├Adresse───────────────────────────────┐┌Coordonnées──────[A13                 ]
[A9                                    ][A14                                   ]
[A10                                   ][A15                                   ]
[A11  ] [A12                           ]┌Né(e) le──┬Titulaire─┬Enfants─┬COTOREP┐
└──────────────────────────────────────┘└[AD_N    ]┴[AD_T    ]┴──[AE]──┴──[H]──┘
┌N°───────┐┌Ex&Co────────┐┌────────────────────────────────────────────────────┐
├─[CPIM ]─┘[C_EC ][EC][AA]│[LEC1                                              ]│
└─>[R]    [LR            ]│[LEC2                                              ]│
┌─1er groupe─┬─2ème groupe┼─────────────┐┌─Centre─┐┌Salle┐┌Place┐┌─Clé─┐┌Ordre┐│
│1-[A]  A-[I]│1-[S]  A-[K]│┌Importation┐│[CENT    ][SAL  ][PLA  ]└─[Z]─┘[OO   ]│
│2-[B]  B-[J]│2-[T]  B-[L]│└[DIMP    ]─┘├──────────┬───────────────────────────┤
│3-[C]       │3-[U]       │┌Langue─────┐│Admis 1[W]│Liste [F]  [LF            ]│
│4-[D]       │4-[V]       │[OCEC       ]│Admis 2[Y]│Rang  [RAN][X][LX         ]│
└────────────┴────────────┴─────────────┴──────────┴───────────────────────────┘
}

screen

{
┌N°───────┐  ┌M..┐┌Nom de naissance────┐┌Etabl.──┐┌─────Type d'établissement───┐
├─[DPIM ]─┘  [B3 ][B4                  ][AET1    ][ATE][ALTE                   ]
│Nom d'usage :    [B5                  ][AET2                                  ]
│1er  Prénom :    [B6                  ][AET3                                  ]
│2ème Prénom :    [B7                  ][AET4                                  ]
│Téléphone   :    [B8                  ][AET5 ][AET6                           ]
├Adresse───────────────────────────────┐┌Coordonnées──────[B13                 ]
[B9                                    ][B14                                   ]
[B10                                   ][B15                                   ]
[B11  ] [B12                           ]┌Né(e) le──┬Titulaire─┬Enfants─┬COTOREP┐
└──────────────────────────────────────┘└[AD_N    ]┴[AD_T    ]┴──[AE]──┴──[H]──┘

┌───────Nationalité────────────────────┐┌───────Lieu de naissance──────────────┐
└[ACN] [ALCN                          ]┘└──────[ALLN                          ]┘
┌───────Origine statutaire─────────────┐┌───────Situation familiale────────────┐
└[AOS] [ALOS                          ]┘└[ASF] [ALSF                          ]┘
┌───────Diplôme────────────────────────┐┌───────Situation militaire────────────┐
└[ATD] [ALTD                          ]┘└[ASM] [ALSM                          ]┘
┌───────Fonction exercée───────────────┐┌───────Situation administrative───────┐
└──────[ALFE                          ]┘└[ASA] [ALSA                          ]┘
}

screen

{
┌[A4                  ][A6                  ]───────────────────[DCEC ][DE][AN]┐
├─────────────────────────────────────┬─────Pièces manquantes──────────────────┤
│Date de saisie     :  [D1      ]     │[P1][L_P1                              ]│
│Date d'importation :  [DIMP    ]     │[P2][L_P2                              ]│
│Date de demande    :  [D2      ]     │[P3][L_P3                              ]│
│Date de rappel     :  [D3      ]     │[P4][L_P4                              ]│
├─────────────────────────────────────┘[P5][L_P5                              ]│
│[P6                                                                          ]│
│[P7                                                                          ]│
│01. État des services civils           11. Certificat de travail              │
│02. Photographie d'identité            12. Fiche de candidature               │
│03. Engagement (déclaration honneur)   13. Fiche de nationalité française     │
│04. Fiche d'options                    14. Photocopie d'engagement volontaire │
│05. Fiche "épreuve facultative"        15. Autorisation puissance parentale   │
│06. Fiche "épreuve d'admission"        16. Fiche de renseignement             │
│07. Handicapés (déclaration CTOP)      17. Photocopie arrêté dernier echelon  │
│08. Diplômes (copie certifiée conf.)   18. Photocopie des contrats de travail │
│09. Certificat travail 1/1/96-14/5/96  19. Certificat du chef d'établissement │
│10. Bulletin N° 2 du casier judiciaire 20. Téléphoner                         │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
┌Pièces manquantes─────────────────────────────────────────────────────────────┐
│                                      [PM][LPM                                ]
[LPM1                                                                          ]
[LPM2                                                                          ]
[LPM3                                                                          ]
[LPM4                                                                          ]
[LPM5                                                                          ]
[LPM6                                                                          ]
├──────────────────────────────────────────────────────────────────────────────┤
│01. État des services civils           11. Certificat de travail              │
│02. Photographie d'identité            12. Fiche de candidature               │
│03. Engagement (déclaration honneur)   13. Fiche de nationalité française     │
│04. Fiche d'options                    14. Photocopie d'engagement volontaire │
│05. Fiche "épreuve facultative"        15. Autorisation puissance parentale   │
│06. Fiche "épreuve d'admission"        16. Fiche de renseignement             │
│07. Handicapés (déclaration CTOP)      17. Photocopie arrêté dernier échelon  │
│08. Diplômes (copie certifiée conf.)   18. Photocopie des contrats de travail │
│09. Certificat travail 1/1/96-14/5/96  19. Certificat du chef d'établissement │
│10. Bulletin N° 2 du casier judiciaire 20. Téléphoner                         │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
┌[A4                  ][A6                  ]───────────────────[DCEC ][DE][AN]┐
├─────────────────────────────────────┬─────Refus d'autorisation de concourir──┤
│Date de saisie     :  [D1      ]     │[R1][L_R1                              ]│
│Date d'importation :  [DIMP    ]     │[R2][L_R2                              ]│
│Date de clôture    :  [DCLO    ]     │[R3][L_R3                              ]│
│Date de refus      :  [D4      ]     │[R4][L_R4                              ]│
├─────────────────────────────────────┘[R5][L_R5                              ]│
│[R6                                                                          ]│
│[R7                                                                          ]│
│01.[ECR1                              ]11. Pas agent titulaire                │
│02.[ECR2                              ]12. Pas agent non titulaire de l'État  │
│03.[ECR3                              ]13. Pas agent à titre temporaire       │
│04.[ECR4                              ]14. Pas les conditions d'âge requises  │
│05.[ECR5                              ]15. Ancienneté insuffisante à l'E.N.   │
│06.                                    16.                                    │
│07. Pas de nationalité Française       17.                                    │
│08. Pas titulaire des diplômes requis  18.                                    │
│09. Pas la pratique professionnelle    19. Toutefois... photocopie diplôme    │
│10. Pas en fonction au moment épreuves 20. Toutefois... demande autorisation  │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
┌Refus d'autorisation de concourir─────────────────────────────────────────────┐
│                                      [RC][LRC                                ]
[LRC1                                                                          ]
[LRC2                                                                          ]
[LRC3                                                                          ]
[LRC4                                                                          ]
[LRC5                                                                          ]
[LRC6                                                                          ]
├──────────────────────────────────────────────────────────────────────────────┤
│01.[ECR1                              ]11. Pas agent titulaire                │
│02.[ECR2                              ]12. Pas agent non titulaire de l'État  │
│03.[ECR3                              ]13. Pas agent à titre temporaire       │
│04.[ECR4                              ]14. Pas les conditions d'âge requises  │
│05.[ECR5                              ]15. Ancienneté insuffisant à l'E.N.    │
│06. Rejet commission de sélection      16.                                    │
│07. Pas de nationalité Française       17.                                    │
│08. Pas titulaire des diplômes requis  18.                                    │
│09. Pas la pratique professionnelle    19. Toutefois... photocopie diplôme    │
│10. Pas en fonction au moment épreuves 20. Toutefois... demande autorisation  │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
                           ┌─────────────────────────┐
┌──────────────────────────┤ Enchainement des écrans ├─────────────────────────┐
│                          └─────────────────────────┘                         │
│     ┌─────────────┐                                                          │
│     │     pec     │                             pec = Personnes Ex&Co        │
│     └──.───────┬──┘                                                          │
│  Master│       │Detail                                                       │
│     ┌──┴───────*──┐         Table                                            │
│     │       cec   ├──────────────┐              cec = Candidatures Ex&Co     │
│     └─────────────┘              │                                           │
│                                  │                                           │
│                           ┌──────┴──────┐                                    │
│                           │      pm     │        pm = Pièces Manquantes      │
│                           └──────┬──────┘                                    │
│                                  │Table                                      │
│                           ┌──────┴──────┐                                    │
│                           │      rc     │        rc = Refus d'autorisation   │
│                           └─────────────┘             de Concourir           │
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
┌────────────┤Nationalité├────────────┐  ┌───────┤Type  d'établissement├───────┐
│                                     │  │                                     │
│ 1 = Française                       │  │ 1 = Rectorat                        │
│ 2 = Union Européenne                │  │ 2 = Inspection académique           │
│ 3 = Autre que Française et UE       │  │ 3 = Lycée                           │
└─────────────────────────────────────┘  │ 4 = Collège                         │
                                         │ 5 = Ministère                       │
                                         │ 6 = CIO                             │
                                         │ 7 = Éducation Nationale - divers    │
                                         │ 8 = Hors Éducation Nationale        │
                                         └─────────────────────────────────────┘
}

screen

{
┌────────┤Origine  statutaire├────────┐  ┌────────┤Origine du candidat├────────┐
│                                     │  │                                     │
├──────HORS FONCTION PUBLIQUE─────────┤  ├──────E.N. (titulaire)───────────────┤
│                                     │  │                                     │
│ 01 = Sans emploi                    │  │ 30 = Enseignant                     │
│ 02 = Etudiants                      │  │ 40 = ITARF                          │
│ 03 = CES, Apprenti, etc...          │  │ 50 = ATOS - Personnel AST           │
│ 04 = En activité (secteur privé)    │  │ 51 =      - Personnel OEA           │
│                                     │  │ 52 =      - Agent                   │
│                                     │  │ 53 =      - Adjoint                 │
│                                     │  │ 54 =      - Autres fonctions        │
│                                     │  │                                     │
├──────FONCTION PUBLIQUE──────────────┤  ├──────E.N. (non titulaire)───────────┤
│                                     │  │                                     │
│ 10 = Fonction publique territoriale │  │ 90 = E.N. : Non titulaire           │
│ 15 = Fonction publique hospitalière │  │ 93 = E.N. : Contractuel             │
│ 20 = Autre administration           │  │ 94 = E.N. : Auxiliaire              │
│                                     │  │ 95 = E.N. : Vacataire, autre...     │
│                                     │  │                                     │
└─────────────────────────────────────┘  └─────────────────────────────────────┘
}

screen

{
┌─┤Situation familiale├─┐ ┌─┤Situation militaire├─┐ ┌┤Situation administrative├┐
│                       │ │                       │ │                          │
│ 1 = Célibataire       │ │ 1 = Non concerné      │ │ 1 = Titulaire            │
│ 2 = Divorcé           │ │ 2 = Accompli          │ │ 2 = Stagiaire            │
│ 3 = Marié(e)          │ │ 3 = Sursitaire        │ │ 3 = Contractuel          │
│ 4 = Veuf              │ │ 4 = Dispensé          │ │ 4 = Auxiliaire           │
│ 5 = Union libre       │ │ 5 = Réformé           │ │ 5 = Intérimaire          │
│ 6 = Séparé            │ │ 6 = Exempté           │ │ 6 = Agent temporaire     │
│                       │ │ 7 = En cours          │ │ 7 = Délégué rectoral     │
│                       │ │                       │ │ 8 = Vacataires           │
└───────────────────────┘ └───────────────────────┘ └──────────────────────────┘
}

screen

{
┌───────────────────────────────────┤Diplôme├──────────────────────────────────┐
│ 0 = Sans diplôme                                                             │
│ 1 = Diplôme de niveau   I : BAC + 5 et plus                                  │
│ 2 = Diplôme de niveau  II : BAC + 3 ou BAC + 4                               │
│ 3 = Diplôme de niveau III : BAC + 2                                          │
│ 4 = Diplôme de niveau  IV : BAC, Brevet de technicien                        │
│ 5 = Diplôme de niveau   V : BEPC, BEP, CAP, etc...                           │
│ 6 = Diplôme d'Etat        : INFIRMIER(E), ASSISTANTE SOCIALE                 │
│ 7 = Autre diplôme                                                            │
└──────────────────────────────────────────────────────────────────────────────┘

┌─────┤Langues vivantes internet├─────┐  ┌──────┤Langues vivantes  Ex&Co├──────┐
│ A = ALLEMAND                        │  │ L = a(L)lemand                      │
│ B = ANGLAIS                         │  │ N = a(N)glais                       │
│ C = ESPAGNOL                        │  │ E =  (E)spagnol                     │
│ D = ITALIEN                         │  │ I =  (I)talien                      │
│ E = PORTUGAIS                       │  │ P =  (P)ortugais                    │
│ F = RUSSE                           │  │ R =  (R)usse                        │
│ G = ARABE LITTERAL                  │  │ A =  (A)rabe littéral               │
└─────────────────────────────────────┘  └─────────────────────────────────────┘ 
}

screen

{
┌─Ex&Co─┬Type┬Session─┬────────────────────────────────────────────────────────┐
├[C_EC ]┴[EC]┴──[AN]──┘    [LEC1                                              ]│
│                          [LEC2                                              ]│
└──────────────────────────────────────────────────────────────────────────────┘

┌Admissibilité──┬E───O──┬Coef.┬──Mini──┬┬Admission──────┬E───O──┬Coef.┬──Mini──┐
│Obligatoire -> │1-[O11]│[C11]│[M11   ]││Obligatoire -> │1-[O21]│[C21]│[M21   ]│
│     "      -> │2-[O12]│[C12]│[M12   ]││     "      -> │2-[O22]│[C22]│[M22   ]│
│     "      -> │3-[O13]│[C13]│[M13   ]││     "      -> │3-[O23]│[C23]│[M23   ]│
│     "      -> │4-[O14]│[C14]│[M14   ]││     "      -> │4-[O24]│[C24]│[M24   ]│
│Facultative -> │A-[O1A]│[C1A]│        ││Facultative -> │A-[O2A]│[C2A]│        │
│     "      -> │B-[O1B]│[C1B]│        ││     "      -> │B-[O2B]│[C2B]│        │
└───────────────┴───────┴─────┴────────┘└───────────────┴───────┴─────┴────────┘
┌─────────────────────────────┬────────┐┌─────────────────────────────┬────────┐
│Note éliminatoire            │[M10   ]││Note éliminatoire            │[M20   ]│
└─────────────────────────────┴────────┘└─────────────────────────────┴────────┘
┌─────────────────────────────┬────────┐┌─────────────────────────────┬────────┐
│Note totale éliminatoire     │[M1M2  ]││Minimum Liste Principale     │[LP    ]│
│(admissibilité + admission)  │        ││Minimum Liste Complémentaire │[LC    ]│
└─────────────────────────────┴────────┘└─────────────────────────────┴────────┘
}

screen

{
┌Motif de refus d'autorisation de concourir (spécifique à l'Ex&Co)─────────────┐
│                                                                              │
│[RC_1                                                                        ]│
│[RC_2                                                                        ]│
└──────────────────────────────────────────────────────────────────────────────┘

┌INFORMATION : 1er groupe d'épreuves───────────────────────────────────────────┐
│                                                                              │
[G1C0                                                                         ]│
[G1C1                                                                         ]│
[G1C2                                                                         ]│
[G1C3                                                                         ]│
[G1C4                                                                         ]│
[G1C5                                                                         ]│
[G1C6                                                                         ]│
[G1C7                                                                         ]│
[G1C8                                                                         ]│
[G1C9                                                                         ]│
│                                                                              │
└──────────────────────────────────────────────────────────────────────────────┘
}

screen

{
┌┬───┤CONCOURS├──┐                      ┌───┤CTS├───┐  ┌┤GEO├┐  ┌───┤CTSGEO├───┐
│└[C_EC ][EC][AN]┘                      │[CTS1     ]│  │     │  │              │
│                                       │[CTS2     ]│  │     │  │              │
│                                       └───────────┘  └─────┘  └──────────────┤
│                                                                              │
│┌┤N° pec (pec)┐ ┌Nom (pec)┐ ┌Exercice┐ ┌DBA/MAJ┐                              │
│└───[NPEC ]───┘ └─[ANOM ]─┘ └─[P_EX]─┘ └─[TTT]─┘                              │
│                                                                              │
│┌┤N° cec (cec)┐ ┌Nom (cec)┐ ┌Exercice┐ ┌D. pièces─┐  ┌D. refus──┐             │
│└───[NCEC ]───┘ └─[CNOM ]─┘ └─[P_EX]─┘ └[DP      ]┘  └[DR      ]┘             │
│                                                                              │
│┌──Date──┐┌Appel┐     ┌────Horaire────┐┌Etabl.──┐    ┌Salle──┐┌Jury┐┌Curseur─┐│
│[DD      ][DHA  ]  de [DHD  ] à [DHF  ][DE1     ]    └[DSAL ]┘└[DJ]┘└[CUP   ]┘│
│                                                                              │
│┌─────┐┌Lieu distribué────────────────┐┌Lieu──────────────────────────────────┤
│[A11  ][ALLD                          ][DEL                                   ]
│                                                                              │
│                                       ┌Hall──────────────────────────────────┤
│                                       [DHAL                                  ]
└──────────────────────────────────────────────────────────────────────────────┘
}

end

tables      pec { personnels examens-concours)       }
            cec { candidatures examens-concours)     }
             ec { examens-concours)                  }
             cp { codes postaux)                     }
             os { origines statutaires)              }
             et { établissements)                    }
             pm { pièces manquantes)                 }
             rc { refus d'autorisation de concourir) }


attributes

APIM =     pec.n_pim,right,reverse,queryclear,default=0;
A3   =     pec.civilite,upshift,reverse,required,autonext,
               include=("MME", "MLE", "M", "M."),
               comments="[]=[MME], [MLE], [M]=[M.], [<-]=Raccourci vers l'écran suivant";
A4   =     pec.nom_naiss,upshift,reverse,required,autonext;
A5   =     pec.nom_usage,upshift,reverse,required,autonext;
A6   =     pec.prenom,upshift,reverse,required,autonext;
A7   =     pec.prenom_2eme,upshift,reverse,autonext;
A8   =     pec.tel_dom,upshift,reverse,autonext;
A9   =     pec.adresse,upshift,reverse,autonext;
A10  =     pec.lieu_dit,upshift,reverse,autonext;
A11  =     pec.c_cp,queryclear,reverse,autonext,
               include=("", "00000" to "99999"),
               lookup ALLD=cp.l_ld joining cp.c_cp;
A12  =     pec.l_ld,upshift,reverse,autonext;

AET1 =     pec.c_et,upshift,reverse,queryclear,autonext;
     =      et.c_et,upshift,reverse,required,autonext;
ATE  =     pec.t_et,upshift,reverse,autonext,
               include=(null, 1 to 8),
               comments="[1]=Rectorat [2]=IA [3]=LYC [4]=CLG [5]=Ministère [6]=CIO [7]=EN [8]=[]=Hors EN";
ALTE =         displayonly type char,reverse;
AET2 =      et.l_et,upshift,reverse,required,autonext;
AET3 =      et.adresse,upshift,reverse,autonext;
AET4 =      et.lieu_dit,upshift,reverse,autonext;
AET5 =      et.c_cp,reverse,required,autonext;
AET6 =      et.l_ld,upshift,reverse,required,autonext;

A13  =     pec.tel_bur,upshift,reverse,autonext;
A14  =     pec.coordonnees_1,upshift,reverse,autonext;
A15  =     pec.coordonnees_2,upshift,reverse,autonext;
AD_N =     pec.d_naissance,reverse,autonext;
AD_T =     pec.d_titulaire,reverse,autonext;
AE   =     pec.enfants,upshift,reverse,autonext;
H    =     pec.cotorep,upshift,reverse,autonext,
               include=("O", "N"),default="N",comments="[O]ui, [N]on";

ACN  =     pec.c_nationalite,upshift,queryclear,reverse,required,autonext,
               include=(1 to 3),
               comments="[ ]=[1]=Française, [2]=Union Européenne, [3]=autre";
ALCN =         displayonly type char,reverse;
AOS  =     pec.c_os,upshift,queryclear,reverse,required,autonext,
               include=("01","02","03","04","10","15","20","30","40","50","51","52","53","54","90","93","94","95"),
               comments="[00]=Ext [10]=Col terr [20]#EN [30]=Enseignant [40]=ITA [51]->[55]=ATOS [90]=EN";
     =      os.c_os,upshift,queryclear,reverse,autonext;
ALOS =      os.l_os,upshift,reverse,autonext;
ATD  =     pec.t_diplome,upshift,reverse,autonext,
               include=(null, 0 to 7),
               comments="[0] [1]=BAC+5 [2]=BAC+3/4 [3]=BAC+2 [4]=BAC/BT [5]=BEP/CAP [6]=I-EPE/AA-SS [7]#";
ALTD =     pec.l_diplome,upshift,reverse,autonext;
ALFE =     pec.fonction,upshift,reverse,autonext;

ALLN =     pec.lieu_naissance,upshift,reverse,autonext;
ASF  =     pec.sit_fam,upshift,reverse,autonext,
               include=(null, "1" to "6"),
               comments="1=Célibataire, 2=Divorcé, 3=Marié, 4=Veuf, 5=Union libre, 6=Séparé";
ALSF =         displayonly type char,reverse;
ASM  =     pec.sit_mil,upshift,reverse,autonext,
               include=(null, "1" to "7"),
               comments="1=NonConcerné 2=Accompli 3=sursitaire 4=Dispensé 5=Réformé 6=Exempté 7=EnCours";
ALSM =         displayonly type char,reverse;
ASA  =     pec.sit_adm,upshift,reverse,autonext,
               include=(null, "1" to "8"),
               comments="1=Tit. 2=Stag. 3=Contr. 4=Aux. 5=Intérim 6=AgentTemp. 7=DéléguéRec. 8=Vacataire";
ALSA =         displayonly type char,reverse;

CPIM =     cec.n_pim,right,reverse,queryclear,autonext;

PM   =      pm.c_pm,reverse,queryclear,autonext,
               include=("01" to "98"),
               comments="Code pièces manquantes : [01] à [98]";
LPM  =      pm.l_pm,reverse,queryclear,autonext;
LPM1 =      pm.l_pm_1,reverse,queryclear,autonext;
LPM2 =      pm.l_pm_2,reverse,queryclear,autonext;
LPM3 =      pm.l_pm_3,reverse,queryclear,autonext;
LPM4 =      pm.l_pm_4,reverse,queryclear,autonext;
LPM5 =      pm.l_pm_5,reverse,queryclear,autonext;
LPM6 =      pm.l_pm_6,reverse,queryclear,autonext;

RC   =      rc.c_rc,reverse,queryclear,autonext,
               include=("01" to "98"),
               comments="Code refus d'autorisation de concourir : [01] à [98]";
LRC  =      rc.l_rc,reverse,queryclear,autonext;
LRC1 =      rc.l_rc_1,reverse,queryclear,autonext;
LRC2 =      rc.l_rc_2,reverse,queryclear,autonext;
LRC3 =      rc.l_rc_3,reverse,queryclear,autonext;
LRC4 =      rc.l_rc_4,reverse,queryclear,autonext;
LRC5 =      rc.l_rc_5,reverse,queryclear,autonext;
LRC6 =      rc.l_rc_6,reverse,queryclear,autonext;

C_EC =     cec.c_ec,upshift,reverse,autonext,
               comments="[<-] = Raccourci vers les pièces manquantes";
     =*     ec.c_ec,upshift,reverse,queryclear,noentry,noupdate;

EC   =     cec.t_ec,upshift,reverse,autonext,
               include= ("CE", "CI", "CS", "CU", "CX", "EP", "EB"),
               comments="[CE], [CI], [CS], [CU], [CX], [EP], [EB]";
     =*     ec.t_ec,upshift,reverse,queryclear,noentry,noupdate;

AA   =     cec.s_ec,upshift,reverse,autonext,required,
               include=(0 to 99),comments="Session";
AN   =      ec.s_ec,upshift,reverse,queryclear,noentry,noupdate;
LEC1 =      ec.l_ec_1,upshift,reverse,noentry,noupdate;
LEC2 =      ec.l_ec_2,upshift,reverse,noentry,noupdate;

R    =     cec.c_decision,upshift,
               include=(null,"A", "C", "D", "R"),
               comments="[A]ménagement [C]onfirmation [D]ésistement [R]efus [<-]=vers pièces manquantes";
LR   =         displayonly type char;

A    =     cec.option_11,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
B    =     cec.option_12,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
C    =     cec.option_13,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
D    =     cec.option_14,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";

I    =     cec.option_1A,upshift,reverse,autonext,autonext,
               include=(null,"-","A" to "Z"),
               comments="[A]rabe littéral a[L]lemand a[N]glais [E]spagnol [I]talien [P]ortugais [R]usse";
J    =     cec.option_1B,upshift,reverse,autonext,
               include=(null,"-","A" to "Z"),
               comments="[-], [A] à [Z]";

S    =     cec.option_21,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
T    =     cec.option_22,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
U    =     cec.option_23,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";
V    =     cec.option_24,upshift,reverse,autonext,
               include=(null,"-","A","B","C","D"),
               comments="[-], [A], [B], [C] ou [D]";

K    =     cec.option_2A,upshift,reverse,autonext,
               include=(null,"-","A" to "Z"),
               comments="[-], [A] à [Z]";
L    =     cec.option_2B,upshift,reverse,autonext,
               include=(null,"-","A" to "Z"),
               comments="[-], [A] à [Z]";

OCEC =         displayonly type char,reverse;

DIMP =     cec.d_load,upshift,reverse,noentry,noupdate;
CENT =     cec.c_et,upshift,reverse,autonext;
SAL  =     cec.salle,reverse,autonext;
PLA  =     cec.place,right,reverse,autonext;
Z    =     cec.lettre_cle,upshift,reverse,autonext;
OO   =     cec.ordre_oral,right,reverse,autonext;
W    =     cec.admis_1,upshift,reverse,autonext,
               comments="[A]dmissible 1er groupe d'épreuves";
Y    =     cec.admis_2,upshift,reverse,autonext,
               comments="[A]dmissible 2ème groupe d'épreuves";
F    =     cec.liste,upshift,reverse,autonext,
               comments="[P]rincipale, [C]omplémentaire";
LF   =         displayonly type char,reverse;
RAN  =     cec.rang,reverse,autonext;
X    =     cec.exaequo,upshift,reverse,autonext,
               comments="[E]x aequo";
LX   =         displayonly type char,reverse;

D1   =     cec.d_saisie,reverse,autonext,
               default=today;
D2   =     cec.d_demande,reverse,autonext,
               comments="[Entrée]=Date du jour";
D3   =     cec.d_relance,reverse,autonext;
P1   =     cec.c_pm_1,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Pièce manquante : [01] à [20]",
               lookup L_P1=pm.l_pm joining pm.c_pm;
P2   =     cec.c_pm_2,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Pièce manquante : [01] à [20]",
               lookup L_P2=pm.l_pm joining pm.c_pm;
P3   =     cec.c_pm_3,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Pièce manquante : [01] à [20]",
               lookup L_P3=pm.l_pm joining pm.c_pm;
P4   =     cec.c_pm_4,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Pièce manquante : [01] à [20]",
               lookup L_P4=pm.l_pm joining pm.c_pm;
P5   =     cec.c_pm_5,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Pièce manquante : [01] à [20]",
               lookup L_P5=pm.l_pm joining pm.c_pm;

P6   =     cec.divers_1,reverse,autonext;
P7   =     cec.divers_2,reverse,autonext;

D4   =     cec.d_refus,reverse,autonext,
               comments="[Entrée]=Date du jour";
R1   =     cec.c_rc_1,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Refus d'autorisation de concourir : [01] à [20]",
               lookup L_R1=rc.l_rc joining rc.c_rc;
R2   =     cec.c_rc_2,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Refus d'autorisation de concourir : [01] à [20]",
               lookup L_R2=rc.l_rc joining rc.c_rc;
R3   =     cec.c_rc_3,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Refus d'autorisation de concourir : [01] à [20]",
               lookup L_R3=rc.l_rc joining rc.c_rc;
R4   =     cec.c_rc_4,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Refus d'autorisation de concourir : [01] à [20]",
               lookup L_R4=rc.l_rc joining rc.c_rc;
R5   =     cec.c_rc_5,upshift,include=(null, "01" to "20"),reverse,autonext,
               comments="Refus d'autorisation de concourir : [01] à [20]",
               lookup L_R5=rc.l_rc joining rc.c_rc;

R6   =     cec.refus_1,reverse,autonext;
R7   =     cec.refus_2,reverse,autonext;

CTS1 =     cec.cts,upshift,reverse,autonext,required;
CTS2 =      ec.cts,upshift,reverse,noentry,noupdate;

NPEC =*    pec.n_pec,right,reverse,queryclear,noupdate;
     =     cec.n_pec,right,reverse,queryclear;

NCEC =     cec.n_cec,right,reverse,autonext,required,queryclear;

ANOM =     pec.nom_cec,upshift,reverse,required,autonext;
CNOM =     cec.nom_cec,upshift,reverse,required,autonext;
P_EX =     pec.exercice,upshift,reverse,queryclear,required,autonext,
               default=current;
     =     cec.exercice,upshift,reverse,queryclear,required,autonext;

DCLO =      ec.d_cloture,reverse,noentry,noupdate;

O11  =      ec.option_11,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C11  =      ec.coef_11,right,reverse,autonext;
M11  =      ec.mini_11,right,reverse,autonext;

O12  =      ec.option_12,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C12  =      ec.coef_12,right,reverse,autonext;
M12  =      ec.mini_12,right,reverse,autonext;

O13  =      ec.option_13,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C13  =      ec.coef_13,right,reverse,autonext;
M13  =      ec.mini_13,right,reverse,autonext;

O14  =      ec.option_14,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C14  =      ec.coef_14,right,reverse,autonext;
M14  =      ec.mini_14,right,reverse,autonext;

O1A  =      ec.option_1A,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C1A  =      ec.coef_1A,right,reverse,autonext;

O1B  =      ec.option_1B,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C1B  =      ec.coef_1B,right,reverse,autonext;

O21  =      ec.option_21,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C21  =      ec.coef_21,right,reverse,autonext;
M21  =      ec.mini_21,right,reverse,autonext;

O22  =      ec.option_22,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C22  =      ec.coef_22,right,reverse,autonext;
M22  =      ec.mini_22,right,reverse,autonext;

O23  =      ec.option_23,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C23  =      ec.coef_23,right,reverse,autonext;
M23  =      ec.mini_23,right,reverse,autonext;

O24  =      ec.option_24,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C24  =      ec.coef_24,right,reverse,autonext;
M24  =      ec.mini_24,right,reverse,autonext;

O2A  =      ec.option_2A,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C2A  =      ec.coef_2A,right,reverse,autonext;

O2B  =      ec.option_2B,upshift,reverse,autonext,
               include=(null, "#", "A" to "Z"),
               comments="[#]=Option indépendante de l'épreuve, [A] à [Z]=Option dépendante de l'épreuve";
C2B  =      ec.coef_2B,right,reverse,autonext;

M10  =      ec.mini_1,right,reverse,autonext,
               comments="Note minimum aux épreuves d'admissibilité";
M20  =      ec.mini_2,right,reverse,autonext,
               comments="Note minimum aux épreuves d'admission";
M1M2 =      ec.mini_total,right,reverse,autonext,
               comments="Note globale minimum liste principale (admissibilité + admission)";
LP   =      ec.mini_lp,right,reverse,autonext,
               comments="Note du dernier admis sur la liste principale";
LC   =      ec.mini_lc,right,reverse,autonext,
               comments="Note du dernier admis sur la liste complémentaire";

G1C0 =      ec.nbconvoc_10,reverse,autonext;
G1C1 =      ec.nbconvoc_11,reverse,autonext;
G1C2 =      ec.nbconvoc_12,reverse,autonext;
G1C3 =      ec.nbconvoc_13,reverse,autonext;
G1C4 =      ec.nbconvoc_14,reverse,autonext;
G1C5 =      ec.nbconvoc_15,reverse,autonext;
G1C6 =      ec.nbconvoc_16,reverse,autonext;
G1C7 =      ec.nbconvoc_17,reverse,autonext;
G1C8 =      ec.nbconvoc_18,reverse,autonext;
G1C9 =      ec.nbconvoc_19,reverse,autonext;

ECR1 =      ec.l_rc_10,noentry,noupdate,autonext;
ECR2 =      ec.l_rc_20,noentry,noupdate,autonext;
ECR3 =      ec.l_rc_30,noentry,noupdate,autonext;
ECR4 =      ec.l_rc_40,noentry,noupdate,autonext;
ECR5 =      ec.l_rc_50,noentry,noupdate,autonext;

RC_1 =         displayonly type char,reverse;
RC_2 =         displayonly type char,reverse;

DPIM =         displayonly type integer,right,reverse;
B3   =         displayonly type char,reverse;
B4   =         displayonly type char,reverse;
B5   =         displayonly type char,reverse;
B6   =         displayonly type char,reverse;
B7   =         displayonly type char,reverse;
B8   =         displayonly type char,reverse;
B9   =         displayonly type char,reverse;
B10  =         displayonly type char,reverse;
B11  =         displayonly type char,reverse;
B12  =         displayonly type char,reverse;
B13  =         displayonly type char,reverse;
B14  =         displayonly type char,reverse;
B15  =         displayonly type char,reverse;

DCEC =         displayonly type char,reverse;
DE   =         displayonly type char,reverse;

DD   =         displayonly type char,reverse;
DHA  =         displayonly type char,reverse;
DHD  =         displayonly type char,reverse;
DHF  =         displayonly type char,reverse;
DE1  =         displayonly type char,reverse;
DSAL =         displayonly type char,reverse;
DJ   =         displayonly type decimal,right,reverse;
DHAL =         displayonly type char,reverse;
DEL  =         displayonly type char,reverse;
DP   =         displayonly type date,reverse;
DR   =         displayonly type date,reverse;

TTT  =         displayonly type char,reverse;
CUP  =         displayonly type char,reverse;

INSTRUCTIONS

composites *<     pec.n_pec,     pec.exercice>
            <     cec.n_pec,     cec.exercice>

composites  <     cec.c_ec,      cec.t_ec>
           *<      ec.c_ec,       ec.t_ec>

    pec master of     cec
    cec master of     pec

{     pec ---------------------------------------------------------------------}
{
before editadd of     pec
       abort;
}
before editadd of     pec
       let  ACN = null
       let ALCN = null
       let  AOS = null
       let  ATE = null
       let ALTE = null
       let  ASF = null
       let ALSF = null
       let  ASM = null
       let ALSM = null
       let  ASA = null
       let ALSA = null;

before remove of     pec
       if TTT <> "DBA"
       then abort;

after  display of     pec
       let TTT  = "DBA"                              {#######################}

       let DPIM = APIM
       let B3   = A3
       let B4   = A4
       let B5   = A5
       let B6   = A6
       let B7   = A7
       let B8   = A8
       let B9   = A9
       let B10  = A10
       let B11  = A11
       let B12  = A12
       let B13  = A13
       let B14  = A14
       let B15  = A15

       let ALTE = null
       let ALSF = null
       let ALSM = null
       let ALSA = null
       let ALCN = null

                                    { NATIONALITÉ }

       if ACN is null then let ALCN = null
       if ACN = "1"   then let ALCN = "Française"
       if ACN = "2"   then let ALCN = "Union Européenne"
       if ACN = "3"   then let ALCN = "Autre que française et UE"

                                    { TYPE D'ÉTABLISSEMENT }

       if ATE is null then let ALTE = ""
       if ATE = "1"   then let ALTE = "Rectorat"
       if ATE = "2"   then let ALTE = "Inspection académique"
       if ATE = "3"   then let ALTE = "Lycée"
       if ATE = "4"   then let ALTE = "Collège"
       if ATE = "5"   then let ALTE = "Ministère"
       if ATE = "6"   then let ALTE = "CIO"
       if ATE = "7"   then let ALTE = "Éducation Nat. - divers"
       if ATE = "8"   then let ALTE = "Hors Éducation Nat."

                                    { SITUATION FAMILIALE }

       if ASF is null then let ALSF = null
       if ASF = "1"   then let ALSF = "Célibataire"
       if ASF = "2"   then let ALSF = "Divorcé"
       if ASF = "3"   then let ALSF = "Marié(e)"
       if ASF = "4"   then let ALSF = "Veuf"
       if ASF = "5"   then let ALSF = "Union libre"
       if ASF = "6"   then let ALSF = "Séparé"

                                    { SITUATION MILITAIRE }

       if ASM is null then let ALSM = null
       if ASM = "1"   then let ALSM = "Non concerné"
       if ASM = "2"   then let ALSM = "Accompli"
       if ASM = "3"   then let ALSM = "Sursitaire"
       if ASM = "4"   then let ALSM = "Dispensé"
       if ASM = "5"   then let ALSM = "Réformé"
       if ASM = "6"   then let ALSM = "Exempté"
       if ASM = "7"   then let ALSM = "En cours"

                                    { SITUATION ADMINISTRATIVE }

       if ASA is null then let ALSA = null
       if ASA = "1"   then let ALSA = "Titulaire"
       if ASA = "2"   then let ALSA = "Stagiaire"
       if ASA = "3"   then let ALSA = "Contractuel"
       if ASA = "4"   then let ALSA = "Auxiliaire"
       if ASA = "5"   then let ALSA = "Intérimaire"
       if ASA = "6"   then let ALSA = "Agent temporaire"
       if ASA = "7"   then let ALSA = "Délégué rectoral"
       if ASA = "8"   then let ALSA = "Vacataire";

before editadd editupdate of     pec
       let CUP = null
       nextfield = A3;

before editadd editupdate of     pec.n_pim
       nextfield = ACN;

before editadd editupdate of     pec.civilite
       let CUP = null;

after  editadd editupdate of     pec.civilite
       if A3 is null
       then let A3 = "MME"

       if A3 = "M"
       then let A3 = "M.";

before editadd editupdate of     pec.nom_naiss
       let CUP = "BEFORE";

after  editadd editupdate of     pec.nom_naiss
       if A4 is null
       then nextfield = A4
       else let ANOM  = A4

       if (A3 = "M." or A3 = "MLE")
       then let A5 = A4;

before editadd editupdate of     pec.nom_usage
       if  CUP = "BEFORE"
       and (A3 = "M." or A3 = "MLE")
       then begin
            let CUP = "AFTER"
            nextfield = A6
            end
       else if  CUP = "AFTER"
            and (A3 = "M." or A3 = "MLE")
            then begin
                 let CUP = "BEFORE"
                 nextfield = A4
                 end;

after  editadd editupdate of     pec.nom_usage
       if A5 is null
       then let A5 = A4;

after  editadd editupdate of     pec.prenom
       if A6 is null
       then nextfield = A6;

before editadd editupdate of     pec.tel_dom
       if A8 is null
       then let A8 = "  .  .  .  .  ";

after  editadd editupdate of     pec.tel_dom
       if A8 = "  .  .  .  .  "
       then let A8 = null;

after  editadd editupdate of     pec.adresse
       if A9 is null
       then nextfield = A9;

after  editadd editupdate of     pec.c_cp
       if A11 is null
       then nextfield = A11
       else if ALLD is not null
            then let A12 = ALLD;

after  editadd editupdate of     pec.l_ld
       if A12 is null
       then nextfield = A12;

before editadd editupdate of     pec.c_nationalite
       let DPIM = APIM
       let B3   = A3
       let B4   = A4
       let B5   = A5
       let B6   = A6
       let B7   = A7
       let B8   = A8
       let B9   = A9
       let B10  = A10
       let B11  = A11
       let B12  = A12
       let B13  = A13
       let B14  = A14
       let B15  = A15;

after  editadd editupdate of     pec.c_nationalite
       if ACN is null
       then let ACN = "1"

       if ACN is null then let ALCN = null
       if ACN = "1"   then let ALCN = "Française"
       if ACN = "2"   then let ALCN = "Union Européenne"
       if ACN = "3"   then let ALCN = "Autre que française et UE";

after  editadd editupdate of     pec.c_os
       if AOS is null
       then let AOS = "00";

after  editadd editupdate of     pec.t_et
       if ATE is null
       then let ATE = "8"

       if ATE is null then let ALTE = ""
       if ATE = "1"   then let ALTE = "Rectorat"
       if ATE = "2"   then let ALTE = "Inspection académique"
       if ATE = "3"   then let ALTE = "Lycée"
       if ATE = "4"   then let ALTE = "Collège"
       if ATE = "5"   then let ALTE = "Ministère"
       if ATE = "6"   then let ALTE = "CIO"
       if ATE = "7"   then let ALTE = "Education Nat. - divers"
       if ATE = "8"   then let ALTE = "Hors Education Nat.";

after  editadd editupdate of     pec.d_naissance
       if AD_N is null
       then nextfield = AD_N
       else if AD_N < 60
            then let AD_N = AD_N + 36524
            else if AD_N < 3333
                 then let AD_N = AD_N + 36525;

before editadd editupdate of     pec.tel_bur
       if A13 is null
       then let A13 = "  .  .  .  .  ";

after  editadd editupdate of     pec.tel_bur
       if A13 = "  .  .  .  .  "
       then let A13 = null;

after  editadd editupdate of     pec.sit_fam
       if ASF is null then let ALSF = null
       if ASF = "1"   then let ALSF = "Célibataire"
       if ASF = "2"   then let ALSF = "Divorcé"
       if ASF = "3"   then let ALSF = "Marié(e)"
       if ASF = "4"   then let ALSF = "Veuf"
       if ASF = "5"   then let ALSF = "Union libre"
       if ASF = "6"   then let ALSF = "Séparé";

before editadd editupdate of     pec.sit_mil
       if ASM is null
       and A3 <> "M."
       then let ASM = "1"

       if CUP  = "AFTER"
       and A3 <> "M."
       then begin
            let CUP = "BEFORE"
            nextfield = ASA
            end
       else if CUP  = "BEFORE"
            and A3 <> "M."
            then begin
                 let CUP = "AFTER"
                 nextfield = ASF
                 end;

after  editadd editupdate of     pec.sit_mil
       if ASM is null then let ALSM = null
       if ASM = "1"   then let ALSM = "Non concerné"
       if ASM = "2"   then let ALSM = "Accompli"
       if ASM = "3"   then let ALSM = "Sursitaire"
       if ASM = "4"   then let ALSM = "Dispensé"
       if ASM = "5"   then let ALSM = "Réformé"
       if ASM = "6"   then let ALSM = "Exempté"
       if ASM = "7"   then let ALSM = "En cours";

after  editadd editupdate of     pec.sit_adm
       if ASA is null then let ALSA = null
       if ASA = "1"   then let ALSA = "Titulaire"
       if ASA = "2"   then let ALSA = "Stagiaire"
       if ASA = "3"   then let ALSA = "Contractuel"
       if ASA = "4"   then let ALSA = "Auxiliaire"
       if ASA = "5"   then let ALSA = "Intérimaire"
       if ASA = "6"   then let ALSA = "Agent temporaire"
       if ASA = "7"   then let ALSA = "Délégué rectoral"
       if ASA = "8"   then let ALSA = "Vacataire"

       nextfield = exitnow;

after  editadd editupdate of     pec
       if ANOM is null
       or P_EX is null
       then abort;

{     cec ---------------------------------------------------------------------}
{
before remove of     cec
       if TTT <> "DBA"
       then abort;
}
after  remove of     cec
       let CNOM = null
       let C_EC = null
       let EC   = null
       let AA   = null
       let DCEC = null
       let DE   = null;

after  display of     cec
       let  LR = null

       if CNOM is null
       then begin
            let C_EC = null
            let EC   = null
            let AA   = null
            let DCEC = null
            let DE   = null
            end
       else begin
            let DCEC = C_EC
            let DE   = EC
            end

                                   { DÉCISION CANDIDATURE }

       if R  is null then let LR   = "En attente"
       if R   = "A"  then let LR   = "Aménagement"
       if R   = "C"  then let LR   = "Confirmation"
       if R   = "D"  then let LR   = "Désistement"
       if R   = "R"  then let LR   = "Refus"

                                        { LANGUES VIVANTES Ex&Co }

                                        { Voir : after  display of      ec }

                               let OCEC = null

       if I is not null and O1A = "L"
       then begin
            if I   = "L"  then let OCEC = "ALLEMAND"
            if I   = "N"  then let OCEC = "ANGLAIS"
            if I   = "E"  then let OCEC = "ESPAGNOL"
            if I   = "I"  then let OCEC = "ITALIEN"
            if I   = "P"  then let OCEC = "PORTUGAIS"
            if I   = "R"  then let OCEC = "RUSSE"
            if I   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if J is not null and O1B = "L"
       then begin
            if J   = "L"  then let OCEC = "ALLEMAND"
            if J   = "N"  then let OCEC = "ANGLAIS"
            if J   = "E"  then let OCEC = "ESPAGNOL"
            if J   = "I"  then let OCEC = "ITALIEN"
            if J   = "P"  then let OCEC = "PORTUGAIS"
            if J   = "R"  then let OCEC = "RUSSE"
            if J   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if K is not null and O2A = "L"
       then begin
            if K   = "L"  then let OCEC = "ALLEMAND"
            if K   = "N"  then let OCEC = "ANGLAIS"
            if K   = "E"  then let OCEC = "ESPAGNOL"
            if K   = "I"  then let OCEC = "ITALIEN"
            if K   = "P"  then let OCEC = "PORTUGAIS"
            if K   = "R"  then let OCEC = "RUSSE"
            if K   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if L is not null and O2B = "L"
       then begin
            if L   = "L"  then let OCEC = "ALLEMAND"
            if L   = "N"  then let OCEC = "ANGLAIS"
            if L   = "E"  then let OCEC = "ESPAGNOL"
            if L   = "I"  then let OCEC = "ITALIEN"
            if L   = "P"  then let OCEC = "PORTUGAIS"
            if L   = "R"  then let OCEC = "RUSSE"
            if L   = "A"  then let OCEC = "ARABE LITTÉRAL"
            end

                                   { LISTE }

                          let LF   = null
       if F   = "P"  then let LF   = "Principale"
       if F   = "C"  then let LF   = "Complémentaire"

                          let LX   = null
       if X   = "E"  then let LX   = "Exaequo"

       if R1 = "01" then let L_R1 = ECR1
       if R1 = "02" then let L_R1 = ECR2
       if R1 = "03" then let L_R1 = ECR3
       if R1 = "04" then let L_R1 = ECR4
       if R1 = "05" then let L_R1 = ECR5

       if R2 = "01" then let L_R2 = ECR1
       if R2 = "02" then let L_R2 = ECR2
       if R2 = "03" then let L_R2 = ECR3
       if R2 = "04" then let L_R2 = ECR4
       if R2 = "05" then let L_R2 = ECR5

       if R3 = "01" then let L_R3 = ECR1
       if R3 = "02" then let L_R3 = ECR2
       if R3 = "03" then let L_R3 = ECR3
       if R3 = "04" then let L_R3 = ECR4
       if R3 = "05" then let L_R3 = ECR5

       if R4 = "01" then let L_R4 = ECR1
       if R4 = "02" then let L_R4 = ECR2
       if R4 = "03" then let L_R4 = ECR3
       if R4 = "04" then let L_R4 = ECR4
       if R4 = "05" then let L_R4 = ECR5

       if R5 = "01" then let L_R5 = ECR1
       if R5 = "02" then let L_R5 = ECR2
       if R5 = "03" then let L_R5 = ECR3
       if R5 = "04" then let L_R5 = ECR4
       if R5 = "05" then let L_R5 = ECR5

       if R6 is not null
       then begin
            let RC_1 = R6
            let RC_2 = R7
            end;

before add of     cec
       let LF  = null
       let LX  = null;

before editadd of     cec
       if  NPEC is     null
       or  DCEC is not null
       then abort
       else begin
            let C_EC = "?????"
            let EC   = "??"
            let AA   = AN
            let CTS1 = CTS2
            let DCEC = C_EC
            let DE   = EC
            let CPIM = APIM
            let CNOM = ANOM

            if C11 is not null then let A = "-"
            if C12 is not null then let B = "-"
            if C13 is not null then let C = "-"
            if C14 is not null then let D = "-"

            if C21 is not null then let S = "-"
            if C22 is not null then let T = "-"
            if C23 is not null then let U = "-"
            if C24 is not null then let V = "-"

            if R is null
            then begin
                 let  R = "C"
                 let LR = "Confirmation"
                 end

            if AA is null
            then nextfield = C_EC
            else nextfield = R
       end;

before editupdate of     cec
       if TTT = "CEC"
       then nextfield = R
       else nextfield = C_EC;

before editadd editupdate of     cec

                                   { DÉCISION CANDIDATURE }

       if R  is null then let LR   = "En attente"
       if R   = "A"  then let LR   = "Aménagement"
       if R   = "C"  then let LR   = "Confirmation"
       if R   = "D"  then let LR   = "Désistement"
       if R   = "R"  then let LR   = "Refus";

before editadd editupdate of     cec.n_pim
       if TTT = "MAJ"
       then nextfield = R
       else if R = "R"
            then nextfield = D4
            else nextfield = D2;

before editadd editupdate of     cec.c_ec
       if EC = "CU"
       then nextfield = R;

after  editadd editupdate of     cec.c_ec
       if AN is not null
       then begin
            let CTS1 = CTS2

            if C11 is not null and A is     null then let A = "-"
            if C12 is not null and B is     null then let B = "-"
            if C13 is not null and C is     null then let C = "-"
            if C14 is not null and D is     null then let D = "-"

            if C21 is not null and S is     null then let S = "-"
            if C22 is not null and T is     null then let T = "-"
            if C23 is not null and U is     null then let U = "-"
            if C24 is not null and V is     null then let V = "-"

            if C11 is     null and A is not null then let A = null
            if C12 is     null and B is not null then let B = null
            if C13 is     null and C is not null then let C = null
            if C14 is     null and D is not null then let D = null
            if C1A is     null and I is not null then let I = null
            if C1B is     null and J is not null then let J = null

            if C21 is     null and S is not null then let S = null
            if C22 is     null and T is not null then let T = null
            if C23 is     null and U is not null then let U = null
            if C24 is     null and V is not null then let V = null
            if C2A is     null and K is not null then let K = null
            if C2B is     null and L is not null then let L = null

            if O11 is     null and A is not null then let A = "-"
            if O12 is     null and B is not null then let B = "-"
            if O13 is     null and C is not null then let C = "-"
            if O14 is     null and D is not null then let D = "-"
            if O1A is     null and I is not null then let I = "-"
            if O1B is     null and J is not null then let J = "-"

            if O21 is     null and S is not null then let S = "-"
            if O22 is     null and T is not null then let T = "-"
            if O23 is     null and U is not null then let U = "-"
            if O24 is     null and V is not null then let V = "-"
            if O2A is     null and K is not null then let K = "-"
            if O2B is     null and L is not null then let L = "-"

            if O11 is not null and O11 <> "#"  and O11 <> A  then let A = "-"
            if O12 is not null and O12 <> "#"  and O12 <> B  then let B = "-"
            if O13 is not null and O13 <> "#"  and O13 <> C  then let C = "-"
            if O14 is not null and O14 <> "#"  and O14 <> D  then let D = "-"

            if O21 is not null and O21 <> "#"  and O21 <> S  then let S = "-"
            if O22 is not null and O22 <> "#"  and O22 <> T  then let T = "-"
            if O23 is not null and O23 <> "#"  and O23 <> U  then let U = "-"
            if O24 is not null and O24 <> "#"  and O24 <> V  then let V = "-"

            end;

before editadd editupdate of     cec.t_ec
       if EC = "CU"
       then nextfield = R;

after  editadd editupdate of     cec.t_ec
       let CUP  = "NULL"

       if AN is null
       then nextfield = C_EC
       else begin
            let AA   = AN
            let CTS1 = CTS2

            if C11 is not null and A is     null then let A = "-"
            if C12 is not null and B is     null then let B = "-"
            if C13 is not null and C is     null then let C = "-"
            if C14 is not null and D is     null then let D = "-"

            if C21 is not null and S is     null then let S = "-"
            if C22 is not null and T is     null then let T = "-"
            if C23 is not null and U is     null then let U = "-"
            if C24 is not null and V is     null then let V = "-"

            if C11 is     null and A is not null then let A = null
            if C12 is     null and B is not null then let B = null
            if C13 is     null and C is not null then let C = null
            if C14 is     null and D is not null then let D = null
            if C1A is     null and I is not null then let I = null
            if C1B is     null and J is not null then let J = null

            if C21 is     null and S is not null then let S = null
            if C22 is     null and T is not null then let T = null
            if C23 is     null and U is not null then let U = null
            if C24 is     null and V is not null then let V = null
            if C2A is     null and K is not null then let K = null
            if C2B is     null and L is not null then let L = null

            if O11 is     null and A is not null then let A = "-"
            if O12 is     null and B is not null then let B = "-"
            if O13 is     null and C is not null then let C = "-"
            if O14 is     null and D is not null then let D = "-"
            if O1A is     null and I is not null then let I = "-"
            if O1B is     null and J is not null then let J = "-"

            if O21 is     null and S is not null then let S = "-"
            if O22 is     null and T is not null then let T = "-"
            if O23 is     null and U is not null then let U = "-"
            if O24 is     null and V is not null then let V = "-"
            if O2A is     null and K is not null then let K = "-"

            if O11 is not null and O11 <> "#"  and O11 <> A  then let A = "-"
            if O12 is not null and O12 <> "#"  and O12 <> B  then let B = "-"
            if O13 is not null and O13 <> "#"  and O13 <> C  then let C = "-"
            if O14 is not null and O14 <> "#"  and O14 <> D  then let D = "-"

            if O21 is not null and O21 <> "#"  and O21 <> S  then let S = "-"
            if O22 is not null and O22 <> "#"  and O22 <> T  then let T = "-"
            if O23 is not null and O23 <> "#"  and O23 <> U  then let U = "-"
            if O24 is not null and O24 <> "#"  and O24 <> V  then let V = "-"

            end

before editadd editupdate of     cec.s_ec
       if TTT = "CEC"
       then if R = "R"
            then nextfield = D4
            else nextfield = D2
       else if CUP is null
            then nextfield = EC
            else nextfield = R;

before editadd editupdate of     cec.c_decision
       if CUP = "EXIT"
       then begin
            let CUP = null
            nextfield = exitnow
            end
       else if CUP = "BEFORE"
            then begin
                 let CUP = null
                 nextfield = A
                 end
            else begin
                 let CUP = null

                 if   R is null
                 and (H is null or H = "N")
                 then begin
                      let  R = "C"
                      let LR = "Confirmation"
                      end
                 end;

after  editupdate of     cec.c_decision
       if  H = "N"
       and R = "A"
       then nextfield = R

       if R is null then let LR = "En attente"
       if R  = "A"  then let LR = "Aménagement"
       if R  = "C"  then let LR = "Confirmation"
       if R  = "D"  then let LR = "Désistement"
       if R  = "R"  then let LR = "Refus"

       if R = "R"
       then nextfield = D4

       if R is null
       or R  = "D"
       then nextfield = exitnow;

before editadd editupdate of     cec.option_11
       if C11 is null
       then nextfield = S

       if O11 is null
       then nextfield = B;

after  editadd editupdate of     cec.option_11
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O12  = "#" or  O12  = A then let B = A
            if O13  = "#" or  O13  = A then let C = A
            if O14  = "#" or  O14  = A then let D = A
            if O21  = "#" or  O21  = A then let S = A
            if O22  = "#" or  O22  = A then let T = A
            if O23  = "#" or  O23  = A then let U = A
            if O24  = "#" or  O24  = A then let V = A

            if O12 <> "#" and O12 <> A then let B = null
            if O13 <> "#" and O13 <> A then let C = null
            if O14 <> "#" and O14 <> A then let D = null
            if O21 <> "#" and O21 <> A then let S = null
            if O22 <> "#" and O22 <> A then let T = null
            if O23 <> "#" and O23 <> A then let U = null
            if O24 <> "#" and O24 <> A then let V = null

            if O1A is not null
            or O1B is not null
            then nextfield = I
            else if O2A is not null
                 or O2B is not null
                 then nextfield = K
                 else nextfield = CENT

            end;

before editadd editupdate of     cec.option_12
       if O12 is null
       then nextfield = C;

after  editadd editupdate of     cec.option_12
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O13  = "#" or  O13  = B then let C = B
            if O14  = "#" or  O14  = B then let D = B
            if O21  = "#" or  O21  = B then let S = B
            if O22  = "#" or  O22  = B then let T = B
            if O23  = "#" or  O23  = B then let U = B
            if O24  = "#" or  O24  = B then let V = B

            if O13 <> "#" and O13 <> B then let C = null
            if O14 <> "#" and O14 <> B then let D = null
            if O21 <> "#" and O21 <> B then let S = null
            if O22 <> "#" and O22 <> B then let T = null
            if O23 <> "#" and O23 <> B then let U = null
            if O24 <> "#" and O24 <> B then let V = null

            if O1A is not null
            or O1B is not null
            then nextfield = I
            else if O2A is not null
                 or O2B is not null
                 then nextfield = K
                 else nextfield = CENT

            end;

before editadd editupdate of     cec.option_13
       if O13 is null
       then nextfield = D;

after  editadd editupdate of     cec.option_13
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O14  = "#" or  O14  = C then let D = C
            if O21  = "#" or  O21  = C then let S = C
            if O22  = "#" or  O22  = C then let T = C
            if O23  = "#" or  O23  = C then let U = C
            if O24  = "#" or  O24  = C then let V = C

            if O14 <> "#" and O14 <> C then let D = null
            if O21 <> "#" and O21 <> C then let S = null
            if O22 <> "#" and O22 <> C then let T = null
            if O23 <> "#" and O23 <> C then let U = null
            if O24 <> "#" and O24 <> C then let V = null

            if O1A is not null
            or O1B is not null
            then nextfield = I
            else if O2A is not null
                 or O2B is not null
                 then nextfield = K
                 else nextfield = CENT

            end;

before editadd editupdate of     cec.option_14
       if O14 is null
       then nextfield = I;

after  editadd editupdate of     cec.option_14
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O21  = "#" or  O21  = D then let S = D
            if O22  = "#" or  O22  = D then let T = D
            if O23  = "#" or  O23  = D then let U = D
            if O24  = "#" or  O24  = D then let V = D

            if O21 <> "#" and O21 <> D then let S = null
            if O22 <> "#" and O22 <> D then let T = null
            if O23 <> "#" and O23 <> D then let U = null
            if O24 <> "#" and O24 <> D then let V = null

            if   O1A is null
            and  O1B is null
            and (O2A is not null or
                 O2B is not null)
            then nextfield = K
            else nextfield = CENT

            end;

before editadd editupdate of     cec.option_1A
       if O1A is null
       then nextfield = J;

after  editadd editupdate of     cec.option_1A

                                     { LANGUES VIVANTES Ex&Co }

                            let OCEC = null

       if  I  is not null
       and O1A = "L"
       then begin
            if I = "L" then let OCEC = "ALLEMAND"
            if I = "N" then let OCEC = "ANGLAIS"
            if I = "E" then let OCEC = "ESPAGNOL"
            if I = "I" then let OCEC = "ITALIEN"
            if I = "P" then let OCEC = "PORTUGAIS"
            if I = "R" then let OCEC = "RUSSE"
            if I = "A" then let OCEC = "ARABE LITTERAL"
            end;

before editadd editupdate of     cec.option_1B
       if O1B is null
       then nextfield = S;

after  editadd editupdate of     cec.option_1B

                                     { LANGUES VIVANTES Ex&Co }

                            let OCEC = null

       if  J  is not null
       and O1B = "L"
       then begin
            if J = "L" then let OCEC = "ALLEMAND"
            if J = "N" then let OCEC = "ANGLAIS"
            if J = "E" then let OCEC = "ESPAGNOL"
            if J = "I" then let OCEC = "ITALIEN"
            if J = "P" then let OCEC = "PORTUGAIS"
            if J = "R" then let OCEC = "RUSSE"
            if J = "A" then let OCEC = "ARABE LITTERAL"
            end;

before editadd editupdate of     cec.option_21
       if O21 is null
       then nextfield = T;

after  editadd editupdate of     cec.option_21
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       and O21 is not null
       then begin
            if O22  = "#" or  O22  = S then let T = S
            if O23  = "#" or  O23  = S then let U = S
            if O24  = "#" or  O24  = S then let V = S

            if O22 <> "#" and O22 <> S then let T = null
            if O23 <> "#" and O23 <> S then let U = null
            if O24 <> "#" and O24 <> S then let V = null

            if O2A is not null
            or O2B is not null
            then nextfield = K
            else nextfield = CENT

            end;

before editadd editupdate of     cec.option_22
       if O22 is null
       then nextfield = U;

after  editadd editupdate of     cec.option_22
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O23  = "#" or  O23  = T then let U = T
            if O24  = "#" or  O24  = T then let V = T

            if O23 <> "#" and O23 <> T then let U = null
            if O24 <> "#" and O24 <> T then let V = null

            if O2A is not null
            or O2B is not null
            then nextfield = K
            else nextfield = CENT

            end;

before editadd editupdate of     cec.option_23
       if O23 is null
       then nextfield = V;

after  editadd editupdate of     cec.option_23
       if  C_EC <> "RPE"
       and C_EC <> "RPE-2"
       then begin
            if O24  = "#" or  O24  = V then let V = U

            if O24 <> "#" and O24 <> V then let V = null

            if O2A is not null
            or O2B is not null
            then nextfield = K
            else nextfield = CENT

            end;

before editadd editupdate of     cec.option_24
       if  O24 is null
       and O2A is null
       and O2B is null
       then nextfield = CENT;

before editadd editupdate of     cec.option_2A
       if O2A is null
       then nextfield = L;

after  editadd editupdate of     cec.option_2A

                                     { LANGUES VIVANTES Ex&Co }

                            let OCEC = null

       if  K  is not null
       and O2A = "L"
       then begin
            if K = "L" then let OCEC = "ALLEMAND"
            if K = "N" then let OCEC = "ANGLAIS"
            if K = "E" then let OCEC = "ESPAGNOL"
            if K = "I" then let OCEC = "ITALIEN"
            if K = "P" then let OCEC = "PORTUGAIS"
            if K = "R" then let OCEC = "RUSSE"
            if K = "A" then let OCEC = "ARABE LITTERAL"
            end;

before editadd editupdate of     cec.option_2B
       if CUP is null
       then nextfield = R
       else if O2B is null
            then nextfield = CENT;

after  editadd editupdate of     cec.option_2B

                                     { LANGUES VIVANTES Ex&Co }

                            let OCEC = null

       if  L  is not null
       and O2B = "L"
       then begin
            if L = "L" then let OCEC = "ALLEMAND"
            if L = "N" then let OCEC = "ANGLAIS"
            if L = "E" then let OCEC = "ESPAGNOL"
            if L = "I" then let OCEC = "ITALIEN"
            if L = "P" then let OCEC = "PORTUGAIS"
            if L = "R" then let OCEC = "RUSSE"
            if L = "A" then let OCEC = "ARABE LITTERAL"
            end;

before editadd editupdate of     cec.c_et
       if TTT = "CEC"
       then nextfield = R;

after  editadd editupdate of     cec.c_et
       let CUP = null;

{     cec : Pièces manquantes -------------------------------------------------}

before editadd editupdate of     cec.d_saisie
       if CUP is null
       then nextfield = D2
       else nextfield = R;

before editadd editupdate of     cec.d_demande
       let CUP = "EXIT"
       let DP  = D2;

after  editadd editupdate of     cec.d_demande
       if  D2 is     null
       and DP is not null
       then begin
            let D3 = null
            let P1 = null
            let P2 = null
            let P3 = null
            let P4 = null
            let P5 = null
            let P6 = P5
            let P7 = P5
            nextfield = R
            end
       else if D2 < 60
            then let D2 = D2 + 36524
            else if D2 < 33333
                 then let D2 = D2 + 36525;

before editadd editupdate of     cec.d_relance
       if D2 is null
       then let D2 = today;

after  editadd editupdate of     cec.d_relance
       if D3 < 60
       then let D3 = D3 + 36524
       else if D3 < 33333
            then let D3 = D3 + 36525;

after  editadd editupdate of     cec.c_pm_1
       if P1 is null
       then begin
            let P1 = P2
            let P2 = P3
            let P3 = P4
            let P4 = P5
            let P5 = null
            end
       else if L_P1 is null
            then nextfield = P1;

after  editadd editupdate of     cec.c_pm_2
       if P2 is null
       then begin
            let P2 = P3
            let P3 = P4
            let P4 = P5
            let P5 = null
            end
       else if L_P2 is null
            then nextfield = P2;

after  editadd editupdate of     cec.c_pm_3
       if P3 is null
       then begin
            let P3 = P4
            let P4 = P5
            let P5 = null
            end
       else if L_P3 is null
            then nextfield = P3;

after  editadd editupdate of     cec.c_pm_4
       if P4 is null
       then begin
            let P4 = P5
            let P5 = null
            end
       else if L_P4 is null
            then nextfield = P4;

after  editadd editupdate of     cec.c_pm_5
       if    P5 is not null
       and L_P5 is     null
       then nextfield = P5;

before editadd editupdate of     cec.divers_2
       if  R   = "R"
       and D4 is null
       then nextfield = D4;

after  editadd editupdate of     cec.divers_2
       nextfield = R;

{     cec : Refus d'autorisation de concourir ---------------------------------}

before editadd editupdate of     cec.d_refus
       let CUP = "EXIT"
       let DR  = D4

       if R is null
       or R <> "R"
       then nextfield = R;

after  editadd editupdate of     cec.d_refus
       if  D4 is     null
       and DR is not null
       then begin
            let   R1 = null
            let   R2 = null
            let   R3 = null
            let   R4 = null
            let   R5 = null
            let   R6 = R5
            let   R7 = R5
            nextfield = R
            end
       else if D4 < 60
            then let D4 = D4 + 36524
            else if D4 < 33333
                 then let D4 = D4 + 36525;

before editadd editupdate of     cec.c_rc_1
       if D4 is null
       then let D4 = today;

after  editadd editupdate of     cec.c_rc_1
       if R1 is null
       then begin
            let   R1 =   R2
            let   R2 =   R3
            let   R3 =   R4
            let   R4 =   R5
            let   R5 = null
            end
       else begin
            if R1 = "01" then let L_R1 = ECR1
            if R1 = "02" then let L_R1 = ECR2
            if R1 = "03" then let L_R1 = ECR3
            if R1 = "04" then let L_R1 = ECR4
            if R1 = "05" then let L_R1 = ECR5

            if L_R1 is null
            then nextfield = R1
            end;

after  editadd editupdate of     cec.c_rc_2
       if R2 is null
       then begin
            let   R2 =   R3
            let   R3 =   R4
            let   R4 =   R5
            let   R5 = null
            end
       else begin
            if R2 = "01" then let L_R2 = ECR1
            if R2 = "02" then let L_R2 = ECR2
            if R2 = "03" then let L_R2 = ECR3
            if R2 = "04" then let L_R2 = ECR4
            if R2 = "05" then let L_R2 = ECR5

            if L_R2 is null
            then nextfield = R2
            end;

after  editadd editupdate of     cec.c_rc_3
       if R3 is null
       then begin
            let   R3 =   R4
            let   R4 =   R5
            let   R5 = null
            end
       else begin
            if R3 = "01" then let L_R3 = ECR1
            if R3 = "02" then let L_R3 = ECR2
            if R3 = "03" then let L_R3 = ECR3
            if R3 = "04" then let L_R3 = ECR4
            if R3 = "05" then let L_R3 = ECR5

            if L_R3 is null
            then nextfield = R3
            end;

after  editadd editupdate of     cec.c_rc_4
       if R4 is null
       then begin
            let   R4 =   R5
            let   R5 = null
            end
       else begin
            if R4 = "01" then let L_R4 = ECR1
            if R4 = "02" then let L_R4 = ECR2
            if R4 = "03" then let L_R4 = ECR3
            if R4 = "04" then let L_R4 = ECR4
            if R4 = "05" then let L_R4 = ECR5

            if L_R4 is null
            then nextfield = R4
            end;

after  editadd editupdate of     cec.c_rc_5
       if    R5 is not null
       and L_R5 is     null
       then begin
            if R5 = "01" then let L_R5 = ECR1
            if R5 = "02" then let L_R5 = ECR2
            if R5 = "03" then let L_R5 = ECR3
            if R5 = "04" then let L_R5 = ECR4
            if R5 = "05" then let L_R5 = ECR5

            if L_R5 is null
            then nextfield = R5
            end;

before editadd editupdate of     cec.refus_1
       if  R6   is     null
       and R7   is     null
       and RC_1 is not null
       then begin
            let R6 = RC_1
            let R7 = RC_2
            end;

after  editadd editupdate of     cec.refus_2
       if  R1 is null
       and R2 is null
       and R3 is null
       and R4 is null
       and R5 is null
       and R6 is null
       and R7 is null
       then nextfield = D4
       else nextfield = D2;

{     cec ---------------------------------------------------------------------}

after  editadd editupdate of     cec
       if AN is null
       then nextfield = EC
       else begin

            if  P1 is null
            and P2 is null
            and P3 is null
            and P4 is null
            and P5 is null
            and P6 is null
            and P7 is null
            then begin
                 let D2 = null
                 let D3 = null
                 end

            if R = "C"
            then begin
                 let   D4 = null
                 let   R1 = null
                 let   R2 = R1
                 let   R3 = R2
                 let   R4 = R3
                 let   R5 = R4
                 let   R6 = R5
                 let   R7 = R6
                 end

            if R = "D"
            then begin
                 let   D2 = null
                 let   D3 = D2
                 let   P1 = null
                 let   P2 = P1
                 let   P3 = P2
                 let   P4 = P3
                 let   P5 = P4
                 let   P6 = P5
                 let   P7 = P6
                 let   D4 = null
                 let   R1 = null
                 let   R2 = R1
                 let   R3 = R2
                 let   R4 = R3
                 let   R5 = R4
                 let   R6 = R5
                 let   R7 = R6
                 end 

            if  R   = "R"
            and R1 is null
            and R2 is null
            and R3 is null
            and R4 is null
            and R5 is null
            and R6 is null
            and R7 is null
            then nextfield = D4

            if C11 is not null and O11 is null and A is null then let A = "-"
            if C12 is not null and O12 is null and B is null then let B = "-"
            if C13 is not null and O13 is null and C is null then let C = "-"
            if C14 is not null and O14 is null and D is null then let D = "-"

            if C21 is not null and O21 is null and S is null then let S = "-"
            if C22 is not null and O22 is null and T is null then let T = "-"
            if C23 is not null and O23 is null and U is null then let U = "-"
            if C24 is not null and O24 is null and V is null then let V = "-"

            if O11 is not null and O11 <> "#"  and O11 <> A  then let A = "-"
            if O12 is not null and O12 <> "#"  and O12 <> B  then let B = "-"
            if O13 is not null and O13 <> "#"  and O13 <> C  then let C = "-"
            if O14 is not null and O14 <> "#"  and O14 <> D  then let D = "-"

            if O21 is not null and O21 <> "#"  and O21 <> S  then let S = "-"
            if O22 is not null and O22 <> "#"  and O22 <> T  then let T = "-"
            if O23 is not null and O23 <> "#"  and O23 <> U  then let U = "-"
            if O24 is not null and O24 <> "#"  and O24 <> V  then let V = "-"

            if R6 is not null
            then begin
                 let RC_1 = R6
                 let RC_2 = R7
                 end

            if CUP = "EXIT"
            then nextfield = R

            end;

{      pm ---------------------------------------------------------------------}

after  editadd editupdate of pm.c_pm
       if PM is null
       then nextfield = PM;

after  editadd editupdate of pm.l_pm
       if LPM is null
       then nextfield = LPM;

after  editadd editupdate of pm.l_pm_1
       if LPM1 is null
       then nextfield = LPM1;

after  editadd editupdate of pm.l_pm_6
       nextfield = exitnow;

{      rc ---------------------------------------------------------------------}

after  editadd of rc.c_rc
       if RC = "01"
       or RC = "02"
       or RC = "03"
       or RC = "04"
       or RC = "05"
       then nextfield = RC;

after  editadd editupdate of rc.c_rc
       if RC is null
       then nextfield = RC;

after  editadd editupdate of rc.l_rc
       if LRC is null
       then nextfield = LRC;

after  editadd editupdate of rc.l_rc_1
       if LRC1 is null
       then nextfield = LRC1;

after  editadd editupdate of rc.l_rc_6
       nextfield = exitnow;

{      ec ---------------------------------------------------------------------}

after  display of      ec
                                        { LANGUES VIVANTES Ex&Co }

                               let OCEC = null

       if I is not null and O1A = "L"
       then begin
            if I   = "L"  then let OCEC = "ALLEMAND"
            if I   = "N"  then let OCEC = "ANGLAIS"
            if I   = "E"  then let OCEC = "ESPAGNOL"
            if I   = "I"  then let OCEC = "ITALIEN"
            if I   = "P"  then let OCEC = "PORTUGAIS"
            if I   = "R"  then let OCEC = "RUSSE"
            if I   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if J is not null and O1B = "L"
       then begin
            if J   = "L"  then let OCEC = "ALLEMAND"
            if J   = "N"  then let OCEC = "ANGLAIS"
            if J   = "E"  then let OCEC = "ESPAGNOL"
            if J   = "I"  then let OCEC = "ITALIEN"
            if J   = "P"  then let OCEC = "PORTUGAIS"
            if J   = "R"  then let OCEC = "RUSSE"
            if J   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if K is not null and O2A = "L"
       then begin
            if K   = "L"  then let OCEC = "ALLEMAND"
            if K   = "N"  then let OCEC = "ANGLAIS"
            if K   = "E"  then let OCEC = "ESPAGNOL"
            if K   = "I"  then let OCEC = "ITALIEN"
            if K   = "P"  then let OCEC = "PORTUGAIS"
            if K   = "R"  then let OCEC = "RUSSE"
            if K   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if L is not null and O2B = "L"
       then begin
            if L   = "L"  then let OCEC = "ALLEMAND"
            if L   = "N"  then let OCEC = "ANGLAIS"
            if L   = "E"  then let OCEC = "ESPAGNOL"
            if L   = "I"  then let OCEC = "ITALIEN"
            if L   = "P"  then let OCEC = "PORTUGAIS"
            if L   = "R"  then let OCEC = "RUSSE"
            if L   = "A"  then let OCEC = "ARABE LITTERAL"
            end

       if R1 = "01" then let L_R1 = ECR1
       if R1 = "02" then let L_R1 = ECR2
       if R1 = "03" then let L_R1 = ECR3
       if R1 = "04" then let L_R1 = ECR4
       if R1 = "05" then let L_R1 = ECR5

       if R2 = "01" then let L_R2 = ECR1
       if R2 = "02" then let L_R2 = ECR2
       if R2 = "03" then let L_R2 = ECR3
       if R2 = "04" then let L_R2 = ECR4
       if R2 = "05" then let L_R2 = ECR5

       if R3 = "01" then let L_R3 = ECR1
       if R3 = "02" then let L_R3 = ECR2
       if R3 = "03" then let L_R3 = ECR3
       if R3 = "04" then let L_R3 = ECR4
       if R3 = "05" then let L_R3 = ECR5

       if R4 = "01" then let L_R4 = ECR1
       if R4 = "02" then let L_R4 = ECR2
       if R4 = "03" then let L_R4 = ECR3
       if R4 = "04" then let L_R4 = ECR4
       if R4 = "05" then let L_R4 = ECR5

       if R5 = "01" then let L_R5 = ECR1
       if R5 = "02" then let L_R5 = ECR2
       if R5 = "03" then let L_R5 = ECR3
       if R5 = "04" then let L_R5 = ECR4
       if R5 = "05" then let L_R5 = ECR5;

{-----------------------------------} end  {-----------------------------------}

I-3. Annexes

▲ I-3.1.2. Ex&Co Système de menus
► I-3.1.3. Ex&Co Écrans
▼ I-3.1.4. Ex&Co États

Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Viadeo Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Twitter Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Google Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Facebook Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Digg Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Delicious Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog MySpace Envoyer le billet « I-3.1.3. Ex&Co Écrans » dans le blog Yahoo

Mis à jour 25/02/2024 à 19h43 par APL-AML

Catégories
■ APL-AML , I- L’ART , I-3. Annexes , I-3.1. BDD Examens-Concours