<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Teacher rights in Community Forum</title>
    <link>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536584#M26279</link>
    <description>&lt;P&gt;If you are using Incident Management, it lives exclusively on the Admin side.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a customization on the Exchange which allows teachers to see what happened with Observations they escalated to Incidents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.powerschool.com/exchange/view.action?download.id=1258&amp;amp;fromSearchResults=true" target="_blank"&gt;https://support.powerschool.com/exchange/view.action?download.id=1258&amp;amp;fromSearchResults=true&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
    <pubDate>Mon, 13 Jan 2025 21:00:04 GMT</pubDate>
    <dc:creator>JeffG9</dc:creator>
    <dc:date>2025-01-13T21:00:04Z</dc:date>
    <item>
      <title>Teacher rights</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536578#M26278</link>
      <description>&lt;P&gt;Is there a way to give teachers rights to see discipline for only the students in their classes?&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 20:40:14 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536578#M26278</guid>
      <dc:creator>perrycollins</dc:creator>
      <dc:date>2025-01-13T20:40:14Z</dc:date>
    </item>
    <item>
      <title>Re: Teacher rights</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536584#M26279</link>
      <description>&lt;P&gt;If you are using Incident Management, it lives exclusively on the Admin side.&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;There is a customization on the Exchange which allows teachers to see what happened with Observations they escalated to Incidents.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;&lt;A href="https://support.powerschool.com/exchange/view.action?download.id=1258&amp;amp;fromSearchResults=true" target="_blank"&gt;https://support.powerschool.com/exchange/view.action?download.id=1258&amp;amp;fromSearchResults=true&lt;/A&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Mon, 13 Jan 2025 21:00:04 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536584#M26279</guid>
      <dc:creator>JeffG9</dc:creator>
      <dc:date>2025-01-13T21:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: Teacher rights</title>
      <link>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536623#M26289</link>
      <description>&lt;P&gt;This doesn't apply to the incident management solution that&amp;nbsp;&lt;a href="https://help.powerschool.com/t5/user/viewprofilepage/user-id/30724"&gt;@JeffG9&lt;/a&gt;&amp;nbsp;mentions, but I built a custom page for the PowerTeacher Portal so teachers could see all of the Log Entries they submitted. This is just a straight list and does not offer resolutions, but it works for our needs.&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;You'd have to build the page to suit your needs, but my tlist looks like this:&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;LI-CODE lang="markup"&gt;&amp;lt;table border="0" cellspacing="0" cellpadding="4" class="tablesorter grid" id="results"&amp;gt;
				&amp;lt;thead&amp;gt;
					&amp;lt;tr&amp;gt;
						&amp;lt;th class="left"&amp;gt;ENTRY DATE&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;Last Name&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;First Name&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;Grade&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;ENTRY&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;SUBTYPE&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;CONSEQUENCE&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;ENTRY AUTHOR&amp;lt;/th&amp;gt;
						&amp;lt;th class="right"&amp;gt;Log Type&amp;lt;/th&amp;gt;
					&amp;lt;/tr&amp;gt;
				&amp;lt;/thead&amp;gt;
~[tlist_sql;
	select to_Char(LOG.ENTRY_DATE,'MM/DD/YYYY') as ENTRY_DATE,
        STUDENTS.LAST_NAME as LAST_NAME,
        STUDENTS.FIRST_NAME as FIRST_NAME,
        STUDENTS.GRADE_LEVEL as GRADE,
        LOG.ENTRY as ENTRY,
        LOG.SUBTYPE as SUBTYPE,
        LOG.CONSEQUENCE as CONSEQUENCE,
        LOG.ENTRY_AUTHOR as ENTRY_AUTHOR,
        	CASE to_char(Log.LogtypeID)
                When '-100000' THEN 'DISC'
                When '3130' THEN 'Parent'
                END AS LogType
     from LOG LOG,
        STUDENTS STUDENTS 
     where STUDENTS.ID=LOG.STUDENTID
     AND ENTRY_DATE &amp;gt; '07/1/2022'
     AND Log.TeacherID  = '~[x:userid]'
     ORDER BY Students.LastFirst
	 
;]
	&amp;lt;tr&amp;gt;
		&amp;lt;td&amp;gt;~(ENTRY_DATE)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(LAST_NAME)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(FIRST_NAME)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(GRADE)
		&amp;lt;td&amp;gt;~(ENTRY)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(SUBTYPE)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(CONSEQUENCE)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(ENTRY_AUTHOR)&amp;lt;/td&amp;gt;
		&amp;lt;td&amp;gt;~(Log_Type)&amp;lt;/td&amp;gt;
	&amp;lt;/tr&amp;gt;
[/tlist_sql]&lt;/LI-CODE&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Again, this is only if you are using Log Entries to track discipline and mine includes a log entry type we have for Parent contact log entries that is unique to our school so the SQL would have to be adjusted to fit your needs.&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Tue, 14 Jan 2025 13:59:16 GMT</pubDate>
      <guid>https://help.powerschool.com/t5/Community-Forum/Teacher-rights/m-p/536623#M26289</guid>
      <dc:creator>ItsOnlyDoug</dc:creator>
      <dc:date>2025-01-14T13:59:16Z</dc:date>
    </item>
  </channel>
</rss>

