View Issue Details

IDProjectCategoryView StatusLast Update
0001336CaseTalk ModelerGeneration (SQL, XML, etc)public2022-01-10 20:40
ReporterBCP Software Assigned ToBCP Software  
PrioritynormalSeveritymajorReproducibilitysometimes
Status closedResolutionfixed 
Target Version8.22Fixed in Version8.22 
Summary0001336: XSD primary key definition has wrong xpath
DescriptionThe xpath definition is used in XSD key declarations. However they are not allowed to contain complexTypes. Therefor the keys need to be expanded with full lexicalized paths.
Additional Information    <xs:element name="Opdrachtmedewerker" type="Opdrachtmedewerker">
        <xs:key name="Opdrachtmedewerker_PK">
            <xs:selector xpath="."/>
            <xs:field xpath="Werknemer"/>
            <xs:field xpath="Opdracht"/>
        </xs:key>
    </xs:element>

should be

    <xs:element name="Opdrachtmedewerker" type="Opdrachtmedewerker">
        <xs:key name="Opdrachtmedewerker_PK">
            <xs:selector xpath="."/>
            <xs:field xpath="Werknemer/werknemernummer"/>
            <xs:field xpath="Opdracht/opdrachtnummer"/>
        </xs:key>
    </xs:element>
TagsNo tags attached.
CaseTalk Edition

Activities

BCP Software

BCP Software

2017-05-18 11:32

administrator  

Order_Employee.png (46,426 bytes)   
Order_Employee.png (46,426 bytes)   
BCP Software

BCP Software

2022-01-10 20:40

administrator   ~0003204

Closing automatically, stayed too long in resolved state. Feel free to re-open with additional information if you think the issue is not resolved.

Issue History

Date Modified Username Field Change
2017-05-18 10:30 BCP Software New Issue
2017-05-18 10:30 BCP Software Assigned To => BCP Software
2017-05-18 10:30 BCP Software Status new => assigned
2017-05-18 10:49 BCP Software Status assigned => resolved
2017-05-18 10:49 BCP Software Resolution open => fixed
2017-05-18 10:49 BCP Software Fixed in Version => 8.22
2017-05-18 11:32 BCP Software File Added: Order_Employee.png
2022-01-10 20:40 BCP Software Note Added: 0003204
2022-01-10 20:40 BCP Software Status resolved => closed