<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Wartungsliste auf Dashboard?]]></title><description><![CDATA[<p dir="auto">Hallo,</p>
<p dir="auto">hat jemand eine Idee, wie ich eine Liste aller Objekte für die aktuell eine Wartung "aktiv" ist, auf dem Dashboard anzeigen kann?</p>
<p dir="auto">Gruß<br />
Stephan</p>
]]></description><link>https://community.i-doit.com/topic/4714/wartungsliste-auf-dashboard</link><generator>RSS for Node</generator><lastBuildDate>Sat, 07 Mar 2026 20:57:54 GMT</lastBuildDate><atom:link href="https://community.i-doit.com/topic/4714.rss" rel="self" type="application/rss+xml"/><pubDate>Sun, 26 Mar 2023 16:15:19 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Mon, 27 Mar 2023 14:07:01 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/lfischer" aria-label="Profile: LFischer">@<bdi>LFischer</bdi></a><br />
Hallo Leo,</p>
<p dir="auto">vielen lieben Dank für die Mühe, die Du Dir gemacht hast. <img src="https://community.i-doit.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f44d.png?v=faf3a255277" class="not-responsive emoji emoji-android emoji--+1" style="height:23px;width:auto;vertical-align:middle" title=":+1:" alt="👍" /></p>
<p dir="auto">Ich werde mir das die Tage einmal genau ansehen. Meine SQL Kenntnisse sind zwar begrenzt, aber das sollte ich schaffen. Dann kann ich sogar die anzeigen, die ab zwei Tagen in der Zukunft in Wartung sein werden und die bis zwei Tage in der Vergangenheit in Wartung waren. <img src="https://community.i-doit.com/assets/plugins/nodebb-plugin-emoji/emoji/android/1f642.png?v=faf3a255277" class="not-responsive emoji emoji-android emoji--slightly_smiling_face" style="height:23px;width:auto;vertical-align:middle" title=":-)" alt="🙂" /></p>
<p dir="auto">Gruß<br />
Stephan</p>
]]></description><link>https://community.i-doit.com/post/17007</link><guid isPermaLink="true">https://community.i-doit.com/post/17007</guid><dc:creator><![CDATA[StephanBuerger]]></dc:creator><pubDate>Mon, 27 Mar 2023 14:07:01 GMT</pubDate></item><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Mon, 27 Mar 2023 11:46:37 GMT]]></title><description><![CDATA[<p dir="auto">Hallo zusammen,</p>
<p dir="auto">ich hatte tatsächlich gerade erst eine ähnliche Anfrage gesehen und habe kurzerhand etwas runtergeschrieben - einen "offiziellen" Report gibt es hierfür leider nicht - diese funktionieren nämlich tatsächlich nur auf Basis von Kategoriedaten.</p>
<p dir="auto">Deswegen muss man sich das mittels SQL selbst zusammenschustern:</p>
<pre><code class="language-sql">SELECT 
obj_main.isys_obj__id AS '__id__', 
j2.isys_obj_type__title AS 'LC__REPORT__FORM__OBJECT_TYPE###0_1', 
obj_main.isys_obj__title AS 'LC__UNIVERSAL__TITLE###0_1', 
j1.isys_cmdb_status__title AS 'LC__UNIVERSAL__CMDB_STATUS###0_1' 

FROM isys_obj AS obj_main 
INNER JOIN isys_cmdb_status AS obj_main_status ON obj_main_status.isys_cmdb_status__id = obj_main.isys_obj__isys_cmdb_status__id 
LEFT JOIN isys_cmdb_status AS j1 ON j1.isys_cmdb_status__id = obj_main.isys_obj__isys_cmdb_status__id 
LEFT JOIN isys_obj_type AS j2 ON j2.isys_obj_type__id = obj_main.isys_obj__isys_obj_type__id 
INNER JOIN isys_maintenance_2_object ON isys_maintenance_2_object__isys_obj__id = obj_main.isys_obj__id
INNER JOIN isys_maintenance ON isys_maintenance__id = isys_maintenance_2_object__isys_maintenance__id 

WHERE (
  (NOW() BETWEEN isys_maintenance__date_from AND isys_maintenance__date_to)
  OR 
  (CAST(NOW() AS DATE) BETWEEN CAST(isys_maintenance__date_from AS DATE) AND CAST(isys_maintenance__date_to AS DATE))
)
ORDER BY j2.isys_obj_type__title DESC
</code></pre>
<p dir="auto">Dieser Report stellt alle Objekte dar, die sich "Heute" in Wartung befinden. Man kann die notwendigen Bedingungen eigentlich an alle möglichen Reports knüpfen, dafür müssen nur die folgenden "JOIN" Zeilen ergänzt werden:</p>
<pre><code class="language-sql">INNER JOIN isys_maintenance_2_object ON isys_maintenance_2_object__isys_obj__id = obj_main.isys_obj__id
INNER JOIN isys_maintenance ON isys_maintenance__id = isys_maintenance_2_object__isys_maintenance__id 
</code></pre>
<p dir="auto">Und natürlich auch die Bedingung:</p>
<pre><code class="language-sql">WHERE (
  (NOW() BETWEEN isys_maintenance__date_from AND isys_maintenance__date_to)
  OR 
  (CAST(NOW() AS DATE) BETWEEN CAST(isys_maintenance__date_from AS DATE) AND CAST(isys_maintenance__date_to AS DATE))
)
</code></pre>
<p dir="auto">VG Leo</p>
]]></description><link>https://community.i-doit.com/post/17006</link><guid isPermaLink="true">https://community.i-doit.com/post/17006</guid><dc:creator><![CDATA[LFischer]]></dc:creator><pubDate>Mon, 27 Mar 2023 11:46:37 GMT</pubDate></item><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Mon, 27 Mar 2023 07:15:29 GMT]]></title><description><![CDATA[<p dir="auto">Hi</p>
<p dir="auto">Die Wartung ist ja (soweit ich das verstehe) kein Attribut des Objekts, sondern Information, die extra in dem AddOn gepflegt wird. Die Kategorie ist dann nur eine Art View auf diese Daten.</p>
<p dir="auto">Evtl. musst Du also den Report in SQL selber zusammenbauen (wie es auch die View im Report Manager macht).</p>
<p dir="auto">Auf den ersten Blick würde ich mir die isys_maintenance Tabellen genauer anschauen.</p>
<p dir="auto">Grüße<br />
Leo</p>
]]></description><link>https://community.i-doit.com/post/17004</link><guid isPermaLink="true">https://community.i-doit.com/post/17004</guid><dc:creator><![CDATA[leobaer]]></dc:creator><pubDate>Mon, 27 Mar 2023 07:15:29 GMT</pubDate></item><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Mon, 27 Mar 2023 07:07:17 GMT]]></title><description><![CDATA[<p dir="auto">Hi Stephan,<br />
hast Du einen Wartungsvertrag ? Dafür musste dir vermutlich entweder selbst oder mit Hilfe des Supports ein SQL Statement zusammenbauen (lassen). Es gibt sonst für die Wartung nur ne View....</p>
]]></description><link>https://community.i-doit.com/post/17003</link><guid isPermaLink="true">https://community.i-doit.com/post/17003</guid><dc:creator><![CDATA[middend]]></dc:creator><pubDate>Mon, 27 Mar 2023 07:07:17 GMT</pubDate></item><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Mon, 27 Mar 2023 04:04:26 GMT]]></title><description><![CDATA[<p dir="auto"><a class="plugin-mentions-user plugin-mentions-a" href="/user/middend" aria-label="Profile: middend">@<bdi>middend</bdi></a><br />
Hi,<br />
das hatte ich mir auch überlegt. Aber wo finde ich denn die notwendigen Kategorien?<br />
Irgendwie sehe ich in der Liste weder unter Global oder Spezifisch etwas, das mit Wartung zu tun haben könnte.</p>
]]></description><link>https://community.i-doit.com/post/17002</link><guid isPermaLink="true">https://community.i-doit.com/post/17002</guid><dc:creator><![CDATA[StephanBuerger]]></dc:creator><pubDate>Mon, 27 Mar 2023 04:04:26 GMT</pubDate></item><item><title><![CDATA[Reply to Wartungsliste auf Dashboard? on Sun, 26 Mar 2023 18:19:13 GMT]]></title><description><![CDATA[<p dir="auto">Hi, am besten geht das über einenn report. Den kannste dann auf dem dashboard anzeigen lassen</p>
]]></description><link>https://community.i-doit.com/post/17001</link><guid isPermaLink="true">https://community.i-doit.com/post/17001</guid><dc:creator><![CDATA[middend]]></dc:creator><pubDate>Sun, 26 Mar 2023 18:19:13 GMT</pubDate></item></channel></rss>