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

Vue hybride

Message pr�c�dent Message pr�c�dent   Message suivant Message suivant
  1. #1
    Membre actif
    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
    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 exp�riment�
    Inscrit en
    Ao�t 2006
    Messages
    191
    D�tails du profil
    Informations forums :
    Inscription : Ao�t 2006
    Messages : 191
    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 actif
    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
    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 exp�riment�
    Inscrit en
    Ao�t 2006
    Messages
    191
    D�tails du profil
    Informations forums :
    Inscription : Ao�t 2006
    Messages : 191
    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 actif
    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
    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 exp�riment�
    Inscrit en
    Ao�t 2006
    Messages
    191
    D�tails du profil
    Informations forums :
    Inscription : Ao�t 2006
    Messages : 191
    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>

+ 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