Import a solution in 5 from 3

When importing a solution from 3.5 all relations on a tab are filled with a uuid, but in servoy 5 this been chamged so the name of relation is used. So on all tabpanels who used relations there is an error raised. Is there way to avoid this?

example:
items:[
{
containsFormID:“8afdb86b-8be8-4f68-94c0-fb817dcc2a04”,
location:“4,4”,
relationName:“fc533638-5435-4b5d-a0aa-28867232edb8”,
text:“hmg_duty_line_mng_agree”,
typeid:15,
uuid:“50cd8b1d-8808-4ac5-b59a-6648849a987b”
}
]

should be:
items:[
{
containsFormID:“8afdb86b-8be8-4f68-94c0-fb817dcc2a04”,
location:“4,4”,
relationName:“emp_employee_to_emp_work_agreement”,
text:“hmg_duty_line_mng_agree”,
typeid:15,
uuid:“50cd8b1d-8808-4ac5-b59a-6648849a987b”
}
],

Regards,

Danny

Danny,

During import Servoy replaces the uuid from a tab relation with a relation name.
When the relation is not defined in the same import file, the relation cannot be found and the uuid is not resolved.

Servoy 5.2.3 will contain a new quickfix to resolve the tab relation name from the problems view.

As a workaround you can re-import the solutions and include all modules in 1 import.

Rob

Rob,

Thanks for your answer and the solution that will be implemented .

Regards Danny