preview server SDK 1.13, noticeType 16, BT-71-Lot #1080
-
Hi devs I have error msg (response from CVS server) But i have it included in xml which is sent at CVS for validation Is this piece of XML correct ? If yes is everything allright at CVS server ? <cac:TenderingTerms>
<cac:ProcurementLegislationDocumentReference>
<cbc:ID>CrossBorderLaw</cbc:ID>
<cbc:DocumentDescription languageID="DEU">some description</cbc:DocumentDescription>
</cac:ProcurementLegislationDocumentReference>
<cac:TendererQualificationRequest>
<cac:SpecificTendererRequirement>
<cbc:TendererRequirementTypeCode listName="exclusion-grounds-source">epo-procurement-document</cbc:TendererRequirementTypeCode>
</cac:SpecificTendererRequirement>
</cac:TendererQualificationRequest>
</cac:TenderingTerms> Thanks for answer |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
The XML snippet does not contain the field BT-71-Lot: this field uses the element It seems you've put BT-806-Procedure instead, but this field should be at the procedure level, not under So the snippet should be something like: <cac:TenderingTerms>
<cac:ProcurementLegislationDocumentReference>
<cbc:ID>CrossBorderLaw</cbc:ID>
<cbc:DocumentDescription languageID="DEU">some description</cbc:DocumentDescription>
</cac:ProcurementLegislationDocumentReference>
<cac:TendererQualificationRequest>
<cac:SpecificTendererRequirement>
<cbc:TendererRequirementTypeCode listName="reserved-procurement">none</cbc:TendererRequirementTypeCode>
</cac:SpecificTendererRequirement>
</cac:TendererQualificationRequest>
</cac:TenderingTerms> |
Beta Was this translation helpful? Give feedback.
The XML snippet does not contain the field BT-71-Lot: this field uses the element
cbc:TendererRequirementTypeCode
, but with the attributelistName="reserved-procurement"
It seems you've put BT-806-Procedure instead, but this field should be at the procedure level, not under
cac:ProcurementProjectLot
So the snippet should be something like: