Reportbasierte Benachrichtung ohne Inhalt
-
Hallo zusammen,
wir haben uns einen eigenen Report mit dem SQL-Editor gebaut, der uns eine Liste mit allen Objekten vom Typ "SIM-Karten" erstellt, deren "Bindefrist Ende" (Attribut mit Feldtyp Datum aus benutzerdefinierter Kategorie) in den nächsten 120 Tagen erreicht wird.
Die SQL-Abfrage funktioniert und liefert das gewünschte Ergebnis:
(auch als TXT-, CSV-, XML- und PDF-Export)Das Ergebnis dieses Reports versenden wir als reportbasierte Benachrichtigung.
Diese Benachrichtigung wird mit der vorgesehenen E-Mail-Vorlage versendet.In der Mail werden die Objekte, die der Report als Ergebnisse liefert, nicht angezeigt, sondern lediglich die "Root location".
Bei anderen Reports funktioniert die Ausgabe der Objekte über den Platzhalter %notification_templates__report% problemlos.
Kann hier jemand weiterhelfen?
SQL-Abfrage:
select isys_obj__id as ID,isys_obj__title as "SIM-Karte", j11.isys_catg_custom_fields_list__field_content AS 'locales::fmt_date::Bindefrist Ende###4_9' from isys_obj LEFT JOIN isys_catg_custom_fields_list AS ROOT_C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN ON isys_obj.isys_obj__id = ROOT_C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN.isys_catg_custom_fields_list__isys_obj__id AND ROOT_C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN.isys_catg_custom_fields_list__isysgui_catg_custom__id = (SELECT isysgui_catg_custom__id FROM isysgui_catg_custom WHERE isysgui_catg_custom__const = 'C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN') AND ROOT_C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN.isys_catg_custom_fields_list__field_type = 'commentary' LEFT JOIN isys_catg_custom_fields_list AS j11 ON isys_obj.isys_obj__id = j11.isys_catg_custom_fields_list__isys_obj__id AND j11.isys_catg_custom_fields_list__field_key = 'c_1600779605064' AND j11.isys_catg_custom_fields_list__data__id = ROOT_C__CATG__CUSTOM_FIELDS_TELEKOM_VERTRAGSDATEN.isys_catg_custom_fields_list__data__id where isys_obj__isys_obj_type__id=69 and isys_obj__status=2 and Now()>=DATE_SUB(j11.isys_catg_custom_fields_list__field_content, INTERVAL 120 DAY) =1