<?xml version="1.0" encoding="UTF-8" ?>
<rss version="2.0" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:wikidot="http://www.wikidot.com/rss-namespace">

	<channel>
		<title>Removing PT Security Menu</title>
		<link>http://peoplesoft.wikidot.com/forum/t-145863/removing-pt-security-menu</link>
		<description>Posts in the discussion thread &quot;Removing PT Security Menu&quot; - Is there any way to remove the PeopleTools Security Menu?</description>
				<copyright></copyright>
		<lastBuildDate>Tue, 18 Aug 2026 10:43:07 +0000</lastBuildDate>
		
					<item>
				<guid>http://peoplesoft.wikidot.com/forum/t-145863#post-445008</guid>
				<title>Re: Removing PT Security Menu</title>
				<link>http://peoplesoft.wikidot.com/forum/t-145863/removing-pt-security-menu#post-445008</link>
				<description></description>
				<pubDate>Fri, 10 Apr 2009 02:19:21 +0000</pubDate>
				<wikidot:authorName>Praj</wikidot:authorName>				<wikidot:authorUserId>52320</wikidot:authorUserId>				<content:encoded>
					<![CDATA[
						 <p>PeopleTools like all other portal navigation security is managed by permission lists. The delivered PeopleTools access permission list is <tt>PTPT1200</tt>. This is associated with the delivered <tt>PeopleTools</tt> role. If there hasn't been many changes related to PeopleTools security in your environment, it may simply be a matter of removing the PeopleTools role from the relevant user.</p> <p>If this doesn't work then there are one or more permission list(s) associated with the user which is giving them access to the PeopleTools folder. In this case you'll need to check which permission lists show the PeopleTools folder.</p> <p>To do this, you first need to look in:</p> <ul> <li><tt>PeopleTools &gt; Portal &gt; Structure and Content</tt></li> </ul> <p>Find the PeopleTools folder, press the edit hyperlink and have a look at the folder security tab. These are the permission lists that allow the user to see the PeopleTools folder (<tt>PT_PEOPLETOOLS</tt>). This doesn't mean they can access the underlying components. It just means they can see the PeopleTools item on their navigation menu. What you are trying to find are the permission list(s) that let them see that.</p> <p>Working with security, it is often easier to query the relevant information from the database. In this case, finding the permission list(s) which give the user access to the PeopleTools portal folder (<tt>PT_PEOPLETOOLS</tt>).</p> <p>Remember to replace <tt>&lt;OPRID&gt;</tt> with the appropriate user's operator ID:</p> <div class="code"> <div class="hl-main"> <pre><span class="hl-reserved">select</span><span class="hl-code"> </span><span class="hl-identifier">OC</span><span class="hl-code">.</span><span class="hl-identifier">OPRID</span><span class="hl-code">, </span><span class="hl-identifier">OC</span><span class="hl-code">.</span><span class="hl-identifier">OPRCLASS</span><span class="hl-code"> </span><span class="hl-reserved">as</span><span class="hl-code"> </span><span class="hl-identifier">PERMISSION_LIST</span><span class="hl-code"> </span><span class="hl-reserved">from</span><span class="hl-code"> </span><span class="hl-identifier">PSPRSMPERM</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code"> </span><span class="hl-reserved">inner</span><span class="hl-code"> </span><span class="hl-reserved">join</span><span class="hl-code"> </span><span class="hl-identifier">PSOPRCLS</span><span class="hl-code"> </span><span class="hl-identifier">OC</span><span class="hl-code"> </span><span class="hl-reserved">on</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">PORTAL_PERMNAME</span><span class="hl-code"> = </span><span class="hl-identifier">OC</span><span class="hl-code">.</span><span class="hl-identifier">OPRCLASS</span><span class="hl-code"> </span><span class="hl-reserved">where</span><span class="hl-code"> </span><span class="hl-identifier">P</span><span class="hl-code">.</span><span class="hl-identifier">PORTAL_OBJNAME</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">PT_PEOPLETOOLS</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">PORTAL_NAME</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">EMPLOYEE</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">and</span><span class="hl-code"> </span><span class="hl-identifier">OC</span><span class="hl-code">.</span><span class="hl-identifier">OPRID</span><span class="hl-code"> = </span><span class="hl-quotes">'</span><span class="hl-string">&lt;OPRID&gt;</span><span class="hl-quotes">'</span><span class="hl-code"> </span><span class="hl-reserved">order</span><span class="hl-code"> </span><span class="hl-reserved">by</span><span class="hl-code"> </span><span class="hl-identifier">OPRID</span><span class="hl-code">, </span><span class="hl-identifier">PERMISSION_LIST</span><span class="hl-code">;</span></pre></div> </div> <p>You may find one of two things:</p> <ol> <li>The user shouldn't have the permission list</li> <li>The permission list shouldn't have accesss to the PeopleTools folder (and underlying items)</li> </ol> <p>So you'll either need to remove the permission list from the user, or modify the permission list.</p> <p>One very important exception to note about PeopleTools access is access to the process monitor. You may find quite a few users have access to the PeopleTools folder and just the Process monitor page which is quite legitimate.</p> <p>If the permission list is giving too much access, look at menu security through the pages tab in:</p> <ul> <li><tt>PeopleTools &gt; Security &gt; Permissions &amp; Roles &gt; Permission Lists</tt></li> </ul> <p>Then take away component security (edit components hyperlink) as appropriate.</p> <p>Hope that helps.</p> 
				 	]]>
				</content:encoded>							</item>
					<item>
				<guid>http://peoplesoft.wikidot.com/forum/t-145863#post-444871</guid>
				<title>Removing PT Security Menu</title>
				<link>http://peoplesoft.wikidot.com/forum/t-145863/removing-pt-security-menu#post-444871</link>
				<description></description>
				<pubDate>Thu, 09 Apr 2009 22:20:48 +0000</pubDate>
				<wikidot:authorName>Jim</wikidot:authorName>								<content:encoded>
					<![CDATA[
						 <p>Hello,</p> <p>I am relatively new to all this PS stuff (three months), and I am wondering if there is any way to remove the People Tools - Security Menu for a specific user.</p> 
				 	]]>
				</content:encoded>							</item>
				</channel>
</rss>