Hi,
On a calendar I try to insert a carriage return in the sql query for the calendar, but when the calendar is diplayed, the carriage retrun is not rendered.
select a.PK, a.pk "Primary key",
b.nom\_vehicule || ' ' || b.immatriculation || ' - ' || b.STATIONNEMENT || chr(13) ||
INITCAP(REPLACE( SUBSTR(CREE\_PAR, 0, INSTR(CREE\_PAR, '@')-1), '.', ' ')) "Véhicule",
a.DATE\_DEBUT "DATE\_DEBUT",
a.DATE\_FIN,
c.email
from DT_AGENDA a, dt_vehicule b, dt_proprietaire c
where a.vehicule = b.pk
and b.proprietaire = c.pk
and b.residence = :P47_RESIDENCE

Best regards.
Christian