Summary
Missing Junctures
Content
Hello,
I'm working on a report in which I encounter a problem when an address has a carriage return because it duplicates Data.
For example for a same ship_stop of a same shipment I have
this :

and this :

And instead I want to have the same thing but with
STOP_ADD_LINE1 (49 BOULEVARD ESTIENNE D'ORVES)
STOP_ADD_LINE2 (ZAC DU POLYGONE)
And also inside of a Ship_stop I have a stop_address data set which is doubled :

When I would like to do the same as explained above.
I can't send Data Model and Data sets on this forum but by mail if you need.
N.B: I tried a clause such as
,(SELECT address_line from location_address where line_sequence = 1 and location_gid = 'la.location_gid') STP_ADD_LINE1
,(SELECT address_line from location_address where line_sequence = 2 and location_gid = 'la.location_gid') STP_ADD_LINE2
,(SELECT address_line from location_address where line_sequence = 3 and location_gid = 'la.location_gid') STP_ADD_LINE3
But it didn't work as (I think) it doesn't know la.location_gid corresponds to, so there is no data on the XML (I would want the field to return data from the location_gid of the ship_stop of the shipment_gid.