Hello everyone,
and another (simple?) question : let's say we have following node structure :
/compoundemployee/person/employment_information -> 0:1 records
custom_string1
end_date
start_date
user_id
...
/compoundemployee/person/personal_information -> 0:n records
end_date
start_date
last_name
....
Question:
personal_information needs to be selected where /compoundemployee/person/personal_information/start_date >= /compoundemployee/person/employment_information/start_date and /compoundemployee/person/personal_information/start_date <= /compoundemployee/person/personal_information/end_date.
I tried the mapping below, as soon as there is no personal_information node in the data, the next outputs are incorrect.
Sample data that is causing the issue is attached, as well as the XSD file.
Any suggestions?
Thanks again !