jlabbe-processia / mxupdate

Automatically exported from code.google.com/p/mxupdate
1 stars 1 forks source link

Persons as Employee from a Company with spaces in the name are exported not correctly #65

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
What steps will reproduce the problem?
1. create a new person as employee for a company with spaces in the name
2. export the person with MxUpdate
3. update the person from the created MxUpdate file

What is the expected output? What do you see instead?
The update does not work because of wrong lines in the TCL file:

WRONG:
set lsCur [ mql print bus Person "Test Everything" "-" select 
"to\[Member|from.type==Company\].from.name" dump "\n" ]
foreach sCur ${lsCur} {puts "${sCur}"}

RESULT:
Company
Name

CORRECTED:
set lsCur [ split [ mql print bus Person "Test Everything" "-" select 
"to\[Member|from.type==Company\].from.name" dump "\n" ] "\n" ]
foreach sCur ${lsCur} {puts "${sCur}"}
RESULT:
Company Name

Original issue reported on code.google.com by tim.mox...@googlemail.com on 5 Oct 2009 at 12:05

GoogleCodeExporter commented 8 years ago

Original comment by tim.mox...@googlemail.com on 7 Oct 2009 at 11:30

GoogleCodeExporter commented 8 years ago
fixed with r562

Original comment by tim.mox...@googlemail.com on 11 Oct 2009 at 10:19

GoogleCodeExporter commented 8 years ago
version V70.7.0 is available as download

Original comment by tim.mox...@googlemail.com on 12 Oct 2009 at 12:47

GoogleCodeExporter commented 8 years ago

Original comment by tim.mox...@innobix.com on 7 Feb 2014 at 8:27

GoogleCodeExporter commented 8 years ago

Original comment by tim.mox...@innobix.com on 7 Feb 2014 at 8:28