IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

JavaScript Discussion :

Parsing XML array


Sujet :

JavaScript

  1. #1
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut Parsing XML array
    Bonjour, je suis débutant en HTML/JVS, j'ai besoin de lire un fichier XML pour pouvoir l'afficher en tableau sur ma page HTML principale.
    J'ai réussi à faire cela avec un fichier XML contenant que 1 table, mais des que il y en a plusieurs, cela ne fonctionne plus (ou plutôt cela fonctionne pour la 1ere table du XML).

    Code JVS pour parser XML:
    Code html : 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
    <table id="from-XML">
          <caption></caption>
          <thead></thead>
          <tbody></tbody>
        </table>
     
     
    <script id="xml-parse"> 
        const 
          refFileXML     = 'ForbiddenLinks.xml', 
          c_TableCaption = document.querySelector('#from-XML caption'),
          c_TableHead    = document.querySelector('#from-XML thead'),
          c_TableBody    = document.querySelector('#from-XML tbody')
        ;
     
          let
            xmlLoad = new XMLHttpRequest();
     
          xmlLoad.open("GET", refFileXML, true); 
     
          xmlLoad.responseType = 'document';
          xmlLoad.overrideMimeType('text/xml');
     
          xmlLoad.onload = function () {
     
            c_TableCaption.textContent = xmlLoad.responseXML.querySelector('section title').textContent;
     
            xmlLoad.responseXML.querySelector('section table').querySelectorAll('tr').forEach(ligneTR=>{
     
              let
                n_Cells   = ligneTR.querySelectorAll('th,td'),
                TablePart = n_Cells[0].tagName.match('th') ? c_TableHead : c_TableBody,
                row       = TablePart.insertRow(-1)
              ;
     
              n_Cells.forEach( (xCell,noCol)=>{
                row.insertCell(noCol).textContent = xCell.textContent;
              })
     
            }) // pour chaque ligneTR
          };
     
          xmlLoad.onerror = function () {
            return reject(xmlLoad.statusText);
          };
     
          xmlLoad.send(null);
      </script>


    Et voici le fichier XML que je dois parser (celui avec plusieurs tables):
    Code xml : 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
    <codevaliditycheck>
    <lastupdate>2013/08/26 00:19:33</lastupdate>
    <section><title>E06BadOQLRefto.xls</title><table>
    <tr><th>Class with OQL</th><th>OQL Select/Where clause</th><th>Position of refto</th><th>Referenced Class</th><th>2nd Referenced Class</th></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyCustomerOffer.myCustomer</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyCustomerOffer.myCustomer</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyOwner.CustomerScheduleRef</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankCustomerOfferSchedule</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceSelectorRuleDescPicker</td><td>aOcsBillingV2ResourceSelectorInBillingResourceToChargeRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceSelectorRuleDescPicker</td><td>aOcsBillingV2ResourceSelectorInBillingResourceToChargeRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceDescriptorRuleDescPicker</td><td>aOcsBillingV2ResourceDescriptionRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceDescriptorRuleDescPicker</td><td>aOcsBillingV2ResourceDescriptionRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2CustomerToInvoiceRuleDescPicker</td><td>aOcsBillingV2CustomerToInvoiceRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2CustomerToInvoiceRuleDescPicker</td><td>aOcsBillingV2CustomerToInvoiceRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).ForOfferSchedule.Name</td><td></td><td>aOcsBankCustomerOfferSchedule</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).ForOfferSchedule.CardCustomerOffer.Name</td><td></td><td>aOcsBankCustomerOfferSchedule</td><td>aOcsBankCardPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).RecordedProcessing.NumberOfCardsToProduce</td><td></td><td>aOcsBankInputFileProcessing</td><td></td></tr>
    <tr><td>aOCSCSA</td><td>aOcsBankImage(a).InBatch.MyOwner</td><td></td><td>aOcsBankPersoBatch</td><td></td></tr>
    </table></section><section><title>E08BadOQLSyntax.xls</title><table>
    <tr><th>Class with OQL</th><th>Variable</th><th>Boolean/bigset</th><th>OQL select</th></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPFulfilmentPrintingGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCarrierLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsPLabelInternalGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsLabelsLogoDescriptor++</td></tr>
    <tr><td>aOcsPackingModuleLabelGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsLabelsLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsEncapsulatedFile.FileContentPointer</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsEncapsulatedReturnFile++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemFile++</td></tr>
    <tr><td>aWFYearCurrencyConversionData</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFYearCurrencyConversionData++ where (OQLClassId(x) = self.ClassId) and (x.Year = Year)</td></tr>
    <tr><td>aWFMonthCurrencyConversionData</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFMonthCurrencyConversionData++ where (OQLClassId(x) = self.ClassId) and (x.Name = NodeName) and (x.Month = Month) and (x.Year = Year)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile where (x.MyOwner = self) and (x.ForExternalProducedFile = ProducedExternalFile) and (x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemFile++ where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.MyOwner = self) and OQLConditionalWhere(self.OnlyNeededFiles, x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsExternalSystemReceivedFile++ where (x.MyOwner = self) and (x.ProcessIsCompleted = True) and (y.ForExternalProducedFile = x) and (y.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where (x.MyOwner = self) and OQLConditionalWhere(self.OnlyNeededFiles, x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsIdDocumentPersoWorkOrder</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ForProductionProfile)</td></tr>
    <tr><td>aOcsIdDocumentPersoWorkOrder</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ForProductionProfile)</td></tr>
    <tr><td>aOcsCustomerPersoProductionProfile</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct++ where x.myProductionProfile = self</td></tr>
    <tr><td>aOcsCustomerPersoProductionProfile</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct++ where x.myProductionProfile = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsItemContactlessCard</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemHybridCard where x.MyCardBody = self</td></tr>
    <tr><td>aOcsItemContactlessCard</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemHybridCard where x.MyCardBody = self</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProdProfile) or x.CustomerProducts.ContainsObject(ProdProfile)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProdProfile) or x.CustomerProducts.ContainsObject(ProdProfile)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = CurRef.ClassId) and (x.Name = CurRef.Name) and (x.CardArtworkPrintingJobSetup = firstJob)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = CurRef.ClassId) and (x.Name = CurRef.Name) and (x.CardArtworkPrintingJobSetup = firstJob)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where (x.UsedForSpecificReturnFile = True) and ((x.CustomerOffer = self.CardCustomerOffer) or (x.CustomerOffer = self.PINMailerCustomerOffer) or (x.CustomerOffer = self.AdditionalMailerCustom</td></tr>
    <tr><td>aOcsPersoCustomerOffer</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where (x.CustomerOffer = self) and (x.UsedForSpecificReturnFile = False)</td></tr>
    <tr><td>aOcsPersoCustomerOffer</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where (x.Customer = self.myCustomer) and (x.UsedForSpecificReturnFile = False) and (x.CustomerOffer = Nil)</td></tr>
    <tr><td>aOcsItemLogoDescriptor</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemLogoDescriptor++ where (OQLClassId(x) = self.ClassId) and (x.LogoRef = self.LogoRef) and (x.MyCustomer = dummyCustomer) using cursor</td></tr>
    <tr><td>aOcsBankCardBodyForProd</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct where x.MyOwner = self.CustomerProduct</td></tr>
    <tr><td>aOcsBankCardBodyForProd</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct where x.MyOwner = self.CustomerProduct</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProductionProfile)</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProductionProfile)</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CardArtworkPrintingJobSetup = self</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CardArtworkPrintingJobSetup = self</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = self.ClassId) and (x.Name = self.Name) using cursor</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = self.ClassId) and (x.Name = self.Name) using cursor</td></tr>
    <tr><td>aOcsIdDocumentGlobalProcessTaskExternalProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where x.MyOwner = InputFileProc</td></tr>
    <tr><td>aOcsGlobalProcessTaskScanExternalProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.File = FileNameWithPath) and (x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankAuditDataToProcess</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++</td></tr>
    <tr><td>aOcsBankAuditDataToProcess</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsECMFileElement</td><td>aOcsECMFileElement.CompressedDataAsPointer</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsECMFileElement++ where x.PreviousVersion = self</td></tr>
    <tr><td>aOcsPReturnFileEngine</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where x.CustomerOffer = CurrentCustomerOffer</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aWFExportImportXMLFileBatchBroker</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFYearCurrencyConversionData++ where x.MyOwner = Nil order by x.Name</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.OverrideConditionsDate</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.StatusHistory</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.ElligibilityComment</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.FlatRatingData</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aOcsBankInputFileSplittingTool</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsSplittedInputFilesCipheringParametersDesc++ where x.Grammar = self.InputFileSplittingParameters.Grammar</td></tr>
    <tr><td>aOcsCardInstantPersoProcessorManager</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.theJobToProcess.ProductionProfileForInstantPerso)</td></tr>
    <tr><td>aOcsCardInstantPersoProcessorManager</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.theJobToProcess.ProductionProfileForInstantPerso)</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.ExternalSystemType = cPegasus) and (x.MyOwner = theIF)</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsBankInputFileProcessing++, z in aOcsOTAGateway where (x.ExternalSystemType = cPegasus) and (x.MyOwner = y) and (x.CreationDate &gt;= self.FromDate) and (x.CreationDate &lt;= self.ToDate) and (y.C</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsBankInputFileProcessing++, z in aOcsOTAGateway where (x.ExternalSystemType = cPegasus) and (x.MyOwner = y) and (x.ForExternalSystem = z) and (x.CreationDate &gt;= self.FromDate) and (x.Creatio</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.ExternalSystemType = cPegasus) and (x.MyOwner = theIF) and OQLConditionalWhere(IsForQuerySD, x.Name = cQuerySd) and OQLConditionalWhere(not IsForQuerySD, x.Name = cPushPerso) order by x.Crea</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.MyOwner = theIF) and (x.ExternalSystemType = cPegasus) and (x.ProcessIsCompleted = False) and (x.Name = cPushPerso)</td></tr>
    <tr><td>aOcsBankExternalProcessingManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self.InputFileToProcess</td></tr>
    <tr><td>aOcsBankExternalProcessingManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = ForInputFileToProcess</td></tr>
    <tr><td>aOcsPersoBatchFile</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where x.CustomerOffer = CustomerOffer</td></tr>
    <tr><td>aOCSBankInputFileGlobalProcessTool</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = ForInputFileToProcess</td></tr>
    <tr><td>aOCSBankInputFileGlobalProcessTool</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = self.JobToProceed</td></tr>
    <tr><td>aOcsCardInstantPersoImportTool</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ProductionProfile)</td></tr>
    <tr><td>aOcsCardInstantPersoImportTool</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ProductionProfile)</td></tr>
    <tr><td>aOcsBankCustomerExtraBatchDataProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where Upcase(x.SpecificName) = CipheringParametersSpecificName</td></tr>
    <tr><td>aOcsTSM_VISA_PreProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where Upcase(x.SpecificName) = Blob2CustomerFilesCipheringParametersNAME</td></tr>
    <tr><td>aOcsMonthlyReportFileProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where x.Customer = self.MonthlyReportFileMapping.MyCustomer</td></tr>
    <tr><td>aOcsPrepareBankProductionDataTool</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup</td></tr>
    <tr><td>aOcsPrepareBankProductionDataTool</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsMobileCardTechnicalDesc.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsMobileCardTechnicalDesc.EF_VM_STATUS</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsCardTechnicalDescription.Comment</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsAtrium2GCardTechnicalDesc.TestScript</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.DAPHash</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.ByteCode</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsApplicationPackageDescriptionRoot.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.BusinessEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.LowLevelEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsBankJavaCardPackageEntityDesc.DAPBlocks</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.DAPHash</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.ByteCode</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsApplicationPackageDescriptionRoot.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.BusinessEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.LowLevelEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsBankJavaCardPackageEntityDesc.DAPBlocks</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_35_DevTgvOnly</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup where (x.CurTippingColor = '') or (x.CurRearIndentColor = '')</td></tr>
    <tr><td>aOcsPatch_ForRelease_35_DevTgvOnly</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup where (x.CurTippingColor = '') or (x.CurRearIndentColor = '')</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self.FromBatch</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsDatacardJobSetup++, y in aOcsInputHopperDetails where x.MultipleInputHoppers.ContainsObject(y) and y.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsDatacardJobSetup++, y in aOcsInputHopperDetails where x.MultipleInputHoppers.ContainsObject(y) and y.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CustomerProducts.ContainsObject(forCustomerProduct)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CustomerProducts.ContainsObject(forCustomerProduct)</td></tr>
    <tr><td>aOcsPersoBNPCFileProcessor</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++</td></tr>
    </table></section><section><title>E09BadPicker.xls</title>

    Je n'est pas assez de place pour renseigner la totalité de mon fichier XML.
    J'avais entendu parlé de framework JVS mais après quelques recherches je n'est pas l'impression que cela sois si utile que ça dans mon cas précis.
    Merci, bonne journée.

  2. #2
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    Salut,

    Le problème c'est que tu ne sélectionne qu'une seule section, la première :

    au lieu d un querySelector fait un querySelectorAll sur ta section
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
     
     xmlLoad.responseXML.querySelectorAll('section table').forEach(fichierXml=>{
    // ICI TU INITIALISES TON NOUVEAU TABLEAU N OUBLIE PAS DE LE FERMER AVANT LA PROCHAINE BOUCLE  
    fichierXml.querySelectorAll('tr').forEach(ligneTR=>{
     
              let
                n_Cells   = ligneTR.querySelectorAll('th,td'),
                TablePart = n_Cells[0].tagName.match('th') ? c_TableHead : c_TableBody,
                row       = TablePart.insertRow(-1)
              ;

  3. #3
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    Très bien je vais essayer, le problème c'est que mon tableau HTML à un ID, et mon QuerySelector se fait sur cet ID :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
     c_TableCaption = document.querySelector('#from-XML caption'),
          c_TableHead    = document.querySelector('#from-XML thead'),
          c_TableBody    = document.querySelector('#from-XML tbody')
    Du coup je vais rencontrer un problème pour insérer mes éléments dans mon tableau?

  4. #4
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    tout dépend ce que tu souhaites.

    Tu veux fusionner toutes les données de tes fichiers XML dans un seul tableau ou tu veux un tableau par fichier ?

  5. #5
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    Je veux avoir les tableaux correspondants aux balises <table> dans mon fichier XML. Il n'y a qu'un fichier XML, et je veux avoir plusieurs tableaux sur ma page web. :/

  6. #6
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    il faut que tu créer le DOM à la volé comme ça pas de problème d id (j espère juste que la quantité de donnée n'est pas colossale pour ne pas tout faire exploser! )

    un genre comme ceci (pas tester)
    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
    <div id="from-XML">
    </div> 
     
     
    <script id="xml-parse"> 
        const 
          refFileXML     = 'ForbiddenLinks.xml',
    	  c_Div = document.querySelector('#from-XML')
        ;
    	let xmlLoad = new XMLHttpRequest();
     
    	xmlLoad.open("GET", refFileXML, true); 
    	xmlLoad.responseType = 'document';
    	xmlLoad.overrideMimeType('text/xml');
     
        xmlLoad.onload = function () {
     
    		xmlLoad.responseXML.querySelectorAll('section table').forEach(maTable=>{
     
    			let 
    				c_Table = document.createElement('table'),
    				c_TableCaption = document.createElement('caption'),
    				c_TableHead    = document.createElement('thead'),
    				c_TableBody    = document.createElement('tbody')
    			;
     
    			c_TableCaption.appendChild(document.createTextNode(xmlLoad.responseXML.querySelector('section title').textContent));
     
                maTable.querySelectorAll('tr').forEach(ligneTR=>{
     
    				let
    					n_Cells   = ligneTR.querySelectorAll('th,td'),
    					TablePart = n_Cells[0].tagName.match('th') ? c_TableHead : c_TableBody,
    					newLine=document.createElement('tr');
    				;
     
    				n_Cells.forEach( (xCell,noCol)=>{
    					row.insertCell(noCol).textContent = xCell.textContent;
    					let newCell=document.createElement('td');
    					newCell.appendChild(document.createTextNode(contenu));
    					newLine.appendChild(newCell);
    				})
    				TablePart.appendChild(newLine);
    			}) // pour chaque ligneTR
     
    			c_Table.appendChild(c_TableCaption);
    			c_Table.appendChild(c_TableHead);
    			c_Table.appendChild(c_TableBody);
     
    		}); // pour chaque tableau
    		c_Div.appendChild(c_Table);
    	};
     
    	xmlLoad.onerror = function () {
    		return reject(xmlLoad.statusText);
    	};
     
    	xmlLoad.send(null);
      </script>

  7. #7
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    J'ai testé, cela ne fonctionne pas ("row" et "contenu" ne sont pas définis).
    Il n'y a pas une fonctionnalité en JVS pour convertir/transformer un tableau JVS en tableau HTML?

  8. #8
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    petit correction effectuée :
    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
    <div id="from-XML">
    </div> 
     
     
    <script id="xml-parse"> 
        const 
          refFileXML     = 'ForbiddenLinks.xml',
    	  c_Div = document.querySelector('#from-XML')
        ;
    	let xmlLoad = new XMLHttpRequest();
     
    	xmlLoad.open("GET", refFileXML, true); 
    	xmlLoad.responseType = 'document';
    	xmlLoad.overrideMimeType('text/xml');
     
        xmlLoad.onload = function () {
     
    		xmlLoad.responseXML.querySelectorAll('section table').forEach(maTable=>{
     
    			let 
    				c_Table = document.createElement('table'),
    				c_TableCaption = document.createElement('caption'),
    				c_TableHead    = document.createElement('thead'),
    				c_TableBody    = document.createElement('tbody')
    			;
     
    			c_TableCaption.appendChild(document.createTextNode(xmlLoad.responseXML.querySelector('section title').textContent));
     
                maTable.querySelectorAll('tr').forEach(ligneTR=>{
     
    				let
    					n_Cells   = ligneTR.querySelectorAll('th,td'),
    					TablePart = n_Cells[0].tagName.match('th') ? c_TableHead : c_TableBody,
    					newLine=document.createElement('tr');
    				;
     
    				n_Cells.forEach( (xCell,noCol)=>{
    					let newCell=document.createElement('td');
    					newCell.appendChild(document.createTextNode(xCell.textContent));
    					newLine.appendChild(newCell);
    				})
    				TablePart.appendChild(newLine);
    			}) // pour chaque ligneTR
     
    			c_Table.appendChild(c_TableCaption);
    			c_Table.appendChild(c_TableHead);
    			c_Table.appendChild(c_TableBody);
     
    		}); // pour chaque tableau
    		c_Div.appendChild(c_Table);
    	};
     
    	xmlLoad.onerror = function () {
    		return reject(xmlLoad.statusText);
    	};
     
    	xmlLoad.send(null);
      </script>
    par contre, j'ai un doute est ce que toutes les cellules sont présentes dans ton fichier xml ? ou seulement celle avec du contenu ?

  9. #9
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    Bonjour, désolé pour l'attente de ma réponse.
    Je vais tester ton code, merci, mais je n'est pas compris ta question x)

    EDIT: Erreur, c_Table n'est pas définie... j'ai essayé de la définir au dessus du premier forEach, mais ça ne fonctionne pas.

  10. #10
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    Oubli ma question en regardant ton XML j'ai eu la réponse ici : <td></td>
    et donc le code doit fonctionner.

  11. #11
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    fonctionne pas (j'ai edit ma dernière réponse)

  12. #12
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    effectivement pour le cas ou la boucle ne passe pas au moins une fois il peut être utile de le définir au dessus.

    en écrivant ce fichier ForbiddenLinks.xml sur mon bureau : (Note: j'ai corrigé la fin de ton fragment pour qu'il deviennent un xml valide)
    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
    <codevaliditycheck>
    <lastupdate>2013/08/26 00:19:33</lastupdate>
    <section><title>E06BadOQLRefto.xls</title><table>
    <tr><th>Class with OQL</th><th>OQL Select/Where clause</th><th>Position of refto</th><th>Referenced Class</th><th>2nd Referenced Class</th></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyCustomerOffer.myCustomer</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyCustomerOffer.myCustomer</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsProductionConfiguration</td><td>aOcsProductionConfiguration(x).MyOwner.MyOwner.CustomerScheduleRef</td><td></td><td>aOcsBankCustomerOfferScheduleAdditionalRules</td><td>aOcsBankCustomerOfferSchedule</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceSelectorRuleDescPicker</td><td>aOcsBillingV2ResourceSelectorInBillingResourceToChargeRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceSelectorRuleDescPicker</td><td>aOcsBillingV2ResourceSelectorInBillingResourceToChargeRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceDescriptorRuleDescPicker</td><td>aOcsBillingV2ResourceDescriptionRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2ResourceDescriptorRuleDescPicker</td><td>aOcsBillingV2ResourceDescriptionRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2CustomerToInvoiceRuleDescPicker</td><td>aOcsBillingV2CustomerToInvoiceRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsBillingV2CustomerToInvoiceRuleDescPicker</td><td>aOcsBillingV2CustomerToInvoiceRuleDesc(x).MyOwner.MyOwner</td><td></td><td>aOcsBillingResourceToCharge</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).ForOfferSchedule.Name</td><td></td><td>aOcsBankCustomerOfferSchedule</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).ForOfferSchedule.CardCustomerOffer.Name</td><td></td><td>aOcsBankCustomerOfferSchedule</td><td>aOcsBankCardPersoCustomerOffer</td><td></td></tr>
    <tr><td>aOcsDataProcBankNonRegRecordPicker</td><td>aOcsDataProcBankNonRegRecord(x).RecordedProcessing.NumberOfCardsToProduce</td><td></td><td>aOcsBankInputFileProcessing</td><td></td></tr>
    <tr><td>aOCSCSA</td><td>aOcsBankImage(a).InBatch.MyOwner</td><td></td><td>aOcsBankPersoBatch</td><td></td></tr>
    </table></section><section><title>E08BadOQLSyntax.xls</title><table>
    <tr><th>Class with OQL</th><th>Variable</th><th>Boolean/bigset</th><th>OQL select</th></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPCardPrintingGraph</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsMLPCCardPrintingGraphWithPredefinedData</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody++ where (x.MyCustomer = Customer) or (x.MyCustomer = Nil) table order by x.Name</td></tr>
    <tr><td>aOcsPFulfilmentPrintingGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCarrierLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsPLabelInternalGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsLabelsLogoDescriptor++</td></tr>
    <tr><td>aOcsPackingModuleLabelGraph</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsLabelsLogoDescriptor++ where x.MyCustomer = MyCustomer</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsEncapsulatedFile.FileContentPointer</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsEncapsulatedReturnFile++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++</td></tr>
    <tr><td>aOcsCardConfiguratorTester</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemFile++</td></tr>
    <tr><td>aWFYearCurrencyConversionData</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFYearCurrencyConversionData++ where (OQLClassId(x) = self.ClassId) and (x.Year = Year)</td></tr>
    <tr><td>aWFMonthCurrencyConversionData</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFMonthCurrencyConversionData++ where (OQLClassId(x) = self.ClassId) and (x.Name = NodeName) and (x.Month = Month) and (x.Year = Year)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile where (x.MyOwner = self) and (x.ForExternalProducedFile = ProducedExternalFile) and (x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemFile++ where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.MyOwner = self) and OQLConditionalWhere(self.OnlyNeededFiles, x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsExternalSystemReceivedFile++ where (x.MyOwner = self) and (x.ProcessIsCompleted = True) and (y.ForExternalProducedFile = x) and (y.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where (x.MyOwner = self) and OQLConditionalWhere(self.OnlyNeededFiles, x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsBankInputFileProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self</td></tr>
    <tr><td>aOcsIdDocumentPersoWorkOrder</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ForProductionProfile)</td></tr>
    <tr><td>aOcsIdDocumentPersoWorkOrder</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ForProductionProfile)</td></tr>
    <tr><td>aOcsCustomerPersoProductionProfile</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct++ where x.myProductionProfile = self</td></tr>
    <tr><td>aOcsCustomerPersoProductionProfile</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct++ where x.myProductionProfile = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where x.MyPreviousItemVersion = self</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsItemCatalogRoot</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemCatalogRoot++ where (OQLClassId(x) = self.ClassId) and (x.ItemReference = self.ItemReference) and (x.LegacyReference = self.LegacyReference) and (x.ItemVersion = self.ItemVersion) and (x.MyCustomer = dummyCustomer) using cur</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where ((x.MyCustomer = theCustomer) or (x.MyCustomer = Nil)) and (x.MyOwner = theProof)</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemSmartCard++ where x.MyCardBody = self</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsCardBody</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.MyCustomer = self.MyCustomer) and (x.MyOwner = self.MyOwner) and ((x.NSId &lt;&gt; self.NSId) or (x.Id &lt;&gt; self.Id))</td></tr>
    <tr><td>aOcsItemContactlessCard</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemHybridCard where x.MyCardBody = self</td></tr>
    <tr><td>aOcsItemContactlessCard</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemHybridCard where x.MyCardBody = self</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProdProfile) or x.CustomerProducts.ContainsObject(ProdProfile)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProdProfile) or x.CustomerProducts.ContainsObject(ProdProfile)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = CurRef.ClassId) and (x.Name = CurRef.Name) and (x.CardArtworkPrintingJobSetup = firstJob)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = CurRef.ClassId) and (x.Name = CurRef.Name) and (x.CardArtworkPrintingJobSetup = firstJob)</td></tr>
    <tr><td>aOcsBankCustomerOfferSchedule</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where (x.UsedForSpecificReturnFile = True) and ((x.CustomerOffer = self.CardCustomerOffer) or (x.CustomerOffer = self.PINMailerCustomerOffer) or (x.CustomerOffer = self.AdditionalMailerCustom</td></tr>
    <tr><td>aOcsPersoCustomerOffer</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where (x.CustomerOffer = self) and (x.UsedForSpecificReturnFile = False)</td></tr>
    <tr><td>aOcsPersoCustomerOffer</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where (x.Customer = self.myCustomer) and (x.UsedForSpecificReturnFile = False) and (x.CustomerOffer = Nil)</td></tr>
    <tr><td>aOcsItemLogoDescriptor</td><td>aOcsItemLogoDescriptor.LogoFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemLogoDescriptor++ where (OQLClassId(x) = self.ClassId) and (x.LogoRef = self.LogoRef) and (x.MyCustomer = dummyCustomer) using cursor</td></tr>
    <tr><td>aOcsBankCardBodyForProd</td><td>aOcsCustomerProduct.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct where x.MyOwner = self.CustomerProduct</td></tr>
    <tr><td>aOcsBankCardBodyForProd</td><td>aOcsCustomerProduct.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerProduct where x.MyOwner = self.CustomerProduct</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProductionProfile)</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(ProductionProfile)</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CardArtworkPrintingJobSetup = self</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CardArtworkPrintingJobSetup = self</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = self.ClassId) and (x.Name = self.Name) using cursor</td></tr>
    <tr><td>aOcsMachineJobSetup</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where (OQLClassId(x) = self.ClassId) and (x.Name = self.Name) using cursor</td></tr>
    <tr><td>aOcsIdDocumentGlobalProcessTaskExternalProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemReceivedFile++ where x.MyOwner = InputFileProc</td></tr>
    <tr><td>aOcsGlobalProcessTaskScanExternalProcessing</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.File = FileNameWithPath) and (x.ProcessIsCompleted = False)</td></tr>
    <tr><td>aOcsBankAuditDataToProcess</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++</td></tr>
    <tr><td>aOcsBankAuditDataToProcess</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactlessCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemContactCard where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = Nil)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsPackingDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsPackingDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankCarrierDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.FrontFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsBlankPaperDescriptor.BackFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsUSAS400Import</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsBlankMailerDescriptor where (x.LegacyReference = ItemNumberTag.AsCString) and (x.MyCustomer = CurCustomer)</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentWarehouse</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemContactlessCard++</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentQuantitativeStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemLaminate</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIdDocumentQuantitativeConsumableStockReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from X in aOcsItemInkCartrige</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsIDDocumentStockHistoryReporter</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemPassportContactless++</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsInsertDescriptor.PhotoFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsUK_TE_Util</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsInsertDescriptor where OQLConditionalWhere(self.strInsert01 &lt;&gt; '', x.Name = self.strInsert01) or OQLConditionalWhere(self.strInsert02 &lt;&gt; '', x.Name = self.strInsert02) or OQLConditionalWhere(self.strInsert03 &lt;&gt; '', x.Name = self</td></tr>
    <tr><td>aOcsECMFileElement</td><td>aOcsECMFileElement.CompressedDataAsPointer</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsECMFileElement++ where x.PreviousVersion = self</td></tr>
    <tr><td>aOcsPReturnFileEngine</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where x.CustomerOffer = CurrentCustomerOffer</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsItemActivationLabel.ImageFile_TOBEDELETED</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aOcsPBankActivationLabelRuleEditor</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsItemActivationLabel where x.MyCustomer = Nil</td></tr>
    <tr><td>aWFExportImportXMLFileBatchBroker</td><td>aWFCurrencyConversionData.Content</td><td>Warning select * with text</td><td>OQL Select * from x in aWFYearCurrencyConversionData++ where x.MyOwner = Nil order by x.Name</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.OverrideConditionsDate</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.StatusHistory</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.ElligibilityComment</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aWFProcessLapsingBatchBroker</td><td>aWFSubscribedEntity.FlatRatingData</td><td>Distinct text</td><td>OQL Select distinct x, v, w from x in aWFLapsingData++, y in aWFBillDesc++, z in aWFLapsingData++, v in aWFContract++, w in aWFContractContacts++ where (y.BillingState.CurrentLapsingData = x) and (x.Canceled = False) and (x.NextScheduledActionDate &lt;= self</td></tr>
    <tr><td>aOcsBankInputFileSplittingTool</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsSplittedInputFilesCipheringParametersDesc++ where x.Grammar = self.InputFileSplittingParameters.Grammar</td></tr>
    <tr><td>aOcsCardInstantPersoProcessorManager</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.theJobToProcess.ProductionProfileForInstantPerso)</td></tr>
    <tr><td>aOcsCardInstantPersoProcessorManager</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.theJobToProcess.ProductionProfileForInstantPerso)</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.ExternalSystemType = cPegasus) and (x.MyOwner = theIF)</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsBankInputFileProcessing++, z in aOcsOTAGateway where (x.ExternalSystemType = cPegasus) and (x.MyOwner = y) and (x.CreationDate &gt;= self.FromDate) and (x.CreationDate &lt;= self.ToDate) and (y.C</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsExternalSystemProducedFile++, y in aOcsBankInputFileProcessing++, z in aOcsOTAGateway where (x.ExternalSystemType = cPegasus) and (x.MyOwner = y) and (x.ForExternalSystem = z) and (x.CreationDate &gt;= self.FromDate) and (x.Creatio</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.ExternalSystemType = cPegasus) and (x.MyOwner = theIF) and OQLConditionalWhere(IsForQuerySD, x.Name = cQuerySd) and OQLConditionalWhere(not IsForQuerySD, x.Name = cPushPerso) order by x.Crea</td></tr>
    <tr><td>aOcsOTATransactionManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where (x.MyOwner = theIF) and (x.ExternalSystemType = cPegasus) and (x.ProcessIsCompleted = False) and (x.Name = cPushPerso)</td></tr>
    <tr><td>aOcsBankExternalProcessingManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self.InputFileToProcess</td></tr>
    <tr><td>aOcsBankExternalProcessingManager</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = ForInputFileToProcess</td></tr>
    <tr><td>aOcsPersoBatchFile</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc++ where x.CustomerOffer = CustomerOffer</td></tr>
    <tr><td>aOCSBankInputFileGlobalProcessTool</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = ForInputFileToProcess</td></tr>
    <tr><td>aOCSBankInputFileGlobalProcessTool</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++ where x.MyOwner = self.JobToProceed</td></tr>
    <tr><td>aOcsCardInstantPersoImportTool</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ProductionProfile)</td></tr>
    <tr><td>aOcsCardInstantPersoImportTool</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(self.ProductionProfile)</td></tr>
    <tr><td>aOcsBankCustomerExtraBatchDataProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where Upcase(x.SpecificName) = CipheringParametersSpecificName</td></tr>
    <tr><td>aOcsTSM_VISA_PreProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where Upcase(x.SpecificName) = Blob2CustomerFilesCipheringParametersNAME</td></tr>
    <tr><td>aOcsMonthlyReportFileProcessor</td><td>aOcsCustomerFilesCipheringParametersDesc.ParamFileData</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCustomerFilesCipheringParametersDesc where x.Customer = self.MonthlyReportFileMapping.MyCustomer</td></tr>
    <tr><td>aOcsPrepareBankProductionDataTool</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup</td></tr>
    <tr><td>aOcsPrepareBankProductionDataTool</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCardBody.FrontFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCardBody.BackFile_MOVE_IN_PROOF</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCPSItem.ItemPhotoFrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>OcsBankCardCustomerProductionProfileCardTitlesManagementAgent</td><td>aOcsCPSItem.ItemPhotoBackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsCardBody where x.MyCustomer = self.Thing.MyCustomer.MyCustomer</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsMobileCardTechnicalDesc.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsMobileCardTechnicalDesc.EF_VM_STATUS</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsCardTechnicalDescription.Comment</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsAtrium2GCardTechnicalDesc.TestScript</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsMobileCardTechnicalDesc++, y in aOcsMaskApplicationRoot++ where x.MyMaskApplications.ContainsObject(y) and (y.MyImplementedApplications.count = 0)</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.DAPHash</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.ByteCode</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsApplicationPackageDescriptionRoot.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.BusinessEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.LowLevelEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsBankJavaCardPackageEntityDesc.DAPBlocks</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsJavaClassDescription++</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.DAPHash</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsJavaCardPackageEntityDesc.ByteCode</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsApplicationPackageDescriptionRoot.APIImportFile</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.BusinessEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsFeatureDesc.LowLevelEnglishExplanation</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_32_DevOnly</td><td>aOcsBankJavaCardPackageEntityDesc.DAPBlocks</td><td>Distinct text</td><td>OQL Select distinct x from x in aOcsJavaCardPackageEntityDesc++, y in aOcsMobile3GJavaClassDescription++ where x.MyClasses.ContainsObject(y) and (y.InstantiationContexts = [])</td></tr>
    <tr><td>aOcsPatch_ForRelease_35_DevTgvOnly</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup where (x.CurTippingColor = '') or (x.CurRearIndentColor = '')</td></tr>
    <tr><td>aOcsPatch_ForRelease_35_DevTgvOnly</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsDatacardJobSetup where (x.CurTippingColor = '') or (x.CurRearIndentColor = '')</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile where x.MyOwner = self.FromBatch</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsDatacardJobSetup++, y in aOcsInputHopperDetails where x.MultipleInputHoppers.ContainsObject(y) and y.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select x from x in aOcsDatacardJobSetup++, y in aOcsInputHopperDetails where x.MultipleInputHoppers.ContainsObject(y) and y.ProductionProfiles.ContainsObject(forProductionProfile)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.FrontFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CustomerProducts.ContainsObject(forCustomerProduct)</td></tr>
    <tr><td>aOcsPersoDataFileProcessor</td><td>aOcsDatacardJobSetup.BackFile</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsMachineJobSetup++ where x.CustomerProducts.ContainsObject(forCustomerProduct)</td></tr>
    <tr><td>aOcsPersoBNPCFileProcessor</td><td>aOcsExternalSystemFile.SavedFileForNonReg</td><td>Warning select * with text</td><td>OQL Select * from x in aOcsExternalSystemProducedFile++</td></tr>
    </table></section>
    </codevaliditycheck>
    et en écrivant ce fichier test_xml.html :
    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
     
    <!doctype html>
    <html lang="fr">
    <head>
      <meta charset="utf-8">
      <title>test_xml</title>
    </head>
    <div id="from-XML">
    </div>  
    <script id="xml-parse">
        const 
          refFileXML     = 'ForbiddenLinks.xml',
    	  c_Div = document.querySelector('#from-XML')
        ;
    	let xmlLoad = new XMLHttpRequest();
     
    	xmlLoad.open("GET", refFileXML, true); 
    	xmlLoad.responseType = 'document';
    	xmlLoad.overrideMimeType('text/xml');
     
        xmlLoad.onload = function () {
    		let c_Table = document.createElement('table');
    		xmlLoad.responseXML.querySelectorAll('section table').forEach(maTable=>{
     
    			let 
    				c_TableCaption = document.createElement('caption'),
    				c_TableHead    = document.createElement('thead'),
    				c_TableBody    = document.createElement('tbody')
    			;
     
    			c_TableCaption.appendChild(document.createTextNode(xmlLoad.responseXML.querySelector('section title').textContent));
     
                maTable.querySelectorAll('tr').forEach(ligneTR=>{
     
    				let
    					n_Cells   = ligneTR.querySelectorAll('th,td'),
    					TablePart = n_Cells[0].tagName.match('th') ? c_TableHead : c_TableBody,
    					newLine=document.createElement('tr');
    				;
     
    				n_Cells.forEach( (xCell,noCol)=>{
    					let newCell=document.createElement('td');
    					newCell.appendChild(document.createTextNode(xCell.textContent));
    					newLine.appendChild(newCell);
    				})
    				TablePart.appendChild(newLine);
    			}) // pour chaque ligneTR
     
    			c_Table.appendChild(c_TableCaption);
    			c_Table.appendChild(c_TableHead);
    			c_Table.appendChild(c_TableBody);
     
    		}); // pour chaque tableau
    		c_Div.appendChild(c_Table);
    	};
     
    	xmlLoad.onerror = function () {
    		return reject(xmlLoad.statusText);
    	};
     
    	xmlLoad.send(null);
      </script>
      </html>

    ça fonctionne et j'obtiens ceci :
    Nom : 2019-05-13 14_40_46-test_xml.png
Affichages : 84
Taille : 51,5 Ko

  13. #13
    Expert éminent
    Avatar de Watilin
    Homme Profil pro
    En recherche d'emploi
    Inscrit en
    Juin 2010
    Messages
    3 094
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 35
    Localisation : France, Ille et Vilaine (Bretagne)

    Informations professionnelles :
    Activité : En recherche d'emploi

    Informations forums :
    Inscription : Juin 2010
    Messages : 3 094
    Points : 6 755
    Points
    6 755
    Par défaut
    Comme Showie l’a dit, le problème est que le XML est mal formé. Pour détecter rapidement ce genre d’erreur, il faut tester si responseXML est null :
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
      xmlLoad.onload = function () {
        if (!xmlLoad.responseXML) {
          console.warn("Le XML est mal formé !");
          return;
        }
     
        let c_Table = document.createElement('table');
        ...
    La FAQ JavaScript – Les cours JavaScript
    Touche F12 = la console → l’outil indispensable pour développer en JavaScript !

  14. #14
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    C'est bon, le tableau s'affiche bien. J'ai encore un petit problème, j'aimerais espacer chacun de mes tableaux par un vide, malheureusement, je ne peut pas créer de table vide entre chaque tableau de ma page web car ce n'est enfaîte qu'un seul et même tableau. (j'explique très mal).
    Il y a t'il un moyen d’espacer tout mes tableaux?

    (j'aimerais une séparation à l'emplacement de la ligne rouge) :
    Nom : 2019_05_13_16_30_31_test_xml.png
Affichages : 80
Taille : 173,2 Ko

  15. #15
    Membre actif
    Inscrit en
    Août 2006
    Messages
    191
    Détails du profil
    Informations forums :
    Inscription : Août 2006
    Messages : 191
    Points : 263
    Points
    263
    Par défaut
    Est tu sur que ce ne sont pas deux tables collées ?

    Mais en gros suivant les cas tu as plusieurs choix

    Si c'est bien deux tables collées tu rajoute un margin-top sur table (c'est plus propre et léger comme solution. Si tu veux modifier le style de ta page il faut toujours privilégier la solution CSS si possible)
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    table{margin-top:20px;}
    tu peux rajouter un <br /><br /> dans ton code html après l attachement de c_Table à C_DIV (à l'ancienne)
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    c_Div.appendChild(document.createElement('br'));
    c_Div.appendChild(document.createElement('br'));
    Si c'est bien un seul tableau il faut que tu ajoutes une ligne vide dont tu pourras effacer toutes les bordures gauche et droite en lui ajoutant une class="ligne_vide"
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    .ligne_vide{
        border-left: 0px;
        border-right: 0px;
    }

  16. #16
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    Bonjour et merci encore de ta réponse.
    Oui c'est un seul et même tableau, ce qui est "embêtant".
    Je vais essayer la méthode d'ajouter une ligne vide mais le problème c'est que je ne vois pas comment ajouter une classe à des éléments qui se génèrent directement avec mon javascript.... désolé je suis encore débutant..
    En tout cas merci pour votre aide, j'en apprends beaucoup.

    EDIT: En plus de ça, dans le style principal de ma page, j'ai déjà un "border", ce qui, il me semble, prends le dessus sur les styles CSS que je pourrais mettre (border left et border right.)

  17. #17
    Membre à l'essai
    Homme Profil pro
    Développeur informatique
    Inscrit en
    Septembre 2018
    Messages
    37
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : France, Val d'Oise (Île de France)

    Informations professionnelles :
    Activité : Développeur informatique
    Secteur : High Tech - Éditeur de logiciels

    Informations forums :
    Inscription : Septembre 2018
    Messages : 37
    Points : 10
    Points
    10
    Par défaut
    C'est bon j'ai ajouté
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    c_Table.appendChild(document.createElement('br'));
    avant la génération de mon c_TableHead. Ce qui met un espace.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Choix de parsing XML
    Par soeursourire dans le forum XML/XSL et SOAP
    Réponses: 2
    Dernier message: 16/02/2006, 09h38
  2. [XML] [EXPAT] Parsing XML et tableau global
    Par GLDavid dans le forum Bibliothèques et frameworks
    Réponses: 1
    Dernier message: 10/02/2006, 12h31
  3. [DOM] Probleme de parsing Xml en java
    Par bolivari dans le forum Format d'échange (XML, JSON...)
    Réponses: 4
    Dernier message: 25/01/2006, 19h42
  4. parsing xml en francais
    Par ouioui2000 dans le forum XML/XSL et SOAP
    Réponses: 2
    Dernier message: 27/10/2005, 17h03
  5. [JSP] Parsing XML avec JDOM
    Par benben13 dans le forum Servlets/JSP
    Réponses: 9
    Dernier message: 26/08/2005, 17h19

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo