 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Creating an AS/400 group profile</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/</link>
	<description></description>
	<lastBuildDate>Sat, 18 May 2013 14:11:18 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/#comment-97968</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 19 Oct 2011 03:13:41 +0000</pubDate>
		<guid isPermaLink="false">#comment-97968</guid>
		<description><![CDATA[&lt;i&gt;Can any one give me clear steps to how to create a new group profile and how to add this group to userprofiles?&lt;/i&gt;

A group profile is created like any other user profile, with the CRTUSRPRF command. You then change each user profile that you want to be a member of that group by running the CHGUSRPRF command against the member profile; use the GRPPRF() parameter to set the group you want the user to join. If that user is already the member of a group, you make the user also be a member of other groups by using the SUPGRPPRF() parameter.

For example, you might have four user profiles in your system -- USER1, USER2, USER3 and USER4. You want to put those users into two groups, so you create two new user profiles named possibly GRP1 and GRP2.
&lt;pre&gt;CRTUSRPRF USRPRF(GRP1) SPCAUT(*JOBCTL)
CRTUSRPRF USRPRF(GRP2) SPCAUT(*SPLCTL)&lt;/pre&gt;
Now, add USER1 and USER2 to GRP1 and add USER3 and USER4 to GRP2:
&lt;pre&gt;CHGUSRPRF USRPRF(USER1) GRPPRF(GRP1)
CHGUSRPRF USRPRF(USER2) GRPPRF(GRP1)
CHGUSRPRF USRPRF(USER3) GRPPRF(GRP2)
CHGUSRPRF USRPRF(USER4) GRPPRF(GRP2)&lt;/pre&gt;
The GRP1 group now has two members -- USER1 and USER2. The GRP2 group has USER3 and USER4. That covers the most basic parts.

However, because GRP1 was given *JOBCTL special authority, both USER1 and USER2 now can use that special authority. And GRP2 was given *SPLCTL, so USER3 and USER4 now have it.

To make USER1 also be a member of GRP2:
&lt;pre&gt;CHGUSRPRF USRPRF(USER1) SUPGRPPRF(GRP2)&lt;/pre&gt;
USER1 now has GRP1 as its group, but also has GRP2 as a &quot;supplemental&quot; group. USER1 now can use both *JOBCTL and *SPLCTL special authorities.

When you create or change a profile that will be used as a group profile, only give authority to the group that you want every member of the group to have. This also goes for resource authority such as for files, programs, libraries or anything else. That&#039;s one of the major reasons for group profiles -- authorities only need to be given to one profile, and it becomes effective for every member.

This helps when a new employee needs a profile. Create the user profile and assign the appropriate group. The new employee immediately has all authorities needed to work as a member of that group.

When you change a user to be a member of a group, you should also decide how you want to set the OWNER(), GRPAUT() and GRPAUTTYP() parameters for members. If a member creates a new object, should it belong to that member or should it automatically belong to the group? Should authority to any new object be made available to the group? By assigning ownership to the group, a member profile can be deleted without needing to handle any objects that the member created. But those parameters are up to you to decide over.

That&#039;s the major elements. Details will always be up to the site that uses the profiles.

Tom]]></description>
		<content:encoded><![CDATA[<p><i>Can any one give me clear steps to how to create a new group profile and how to add this group to userprofiles?</i></p>
<p>A group profile is created like any other user profile, with the CRTUSRPRF command. You then change each user profile that you want to be a member of that group by running the CHGUSRPRF command against the member profile; use the GRPPRF() parameter to set the group you want the user to join. If that user is already the member of a group, you make the user also be a member of other groups by using the SUPGRPPRF() parameter.</p>
<p>For example, you might have four user profiles in your system &#8212; USER1, USER2, USER3 and USER4. You want to put those users into two groups, so you create two new user profiles named possibly GRP1 and GRP2.</p>
<pre>CRTUSRPRF USRPRF(GRP1) SPCAUT(*JOBCTL)
CRTUSRPRF USRPRF(GRP2) SPCAUT(*SPLCTL)</pre>
<p>Now, add USER1 and USER2 to GRP1 and add USER3 and USER4 to GRP2:</p>
<pre>CHGUSRPRF USRPRF(USER1) GRPPRF(GRP1)
CHGUSRPRF USRPRF(USER2) GRPPRF(GRP1)
CHGUSRPRF USRPRF(USER3) GRPPRF(GRP2)
CHGUSRPRF USRPRF(USER4) GRPPRF(GRP2)</pre>
<p>The GRP1 group now has two members &#8212; USER1 and USER2. The GRP2 group has USER3 and USER4. That covers the most basic parts.</p>
<p>However, because GRP1 was given *JOBCTL special authority, both USER1 and USER2 now can use that special authority. And GRP2 was given *SPLCTL, so USER3 and USER4 now have it.</p>
<p>To make USER1 also be a member of GRP2:</p>
<pre>CHGUSRPRF USRPRF(USER1) SUPGRPPRF(GRP2)</pre>
<p>USER1 now has GRP1 as its group, but also has GRP2 as a &#8220;supplemental&#8221; group. USER1 now can use both *JOBCTL and *SPLCTL special authorities.</p>
<p>When you create or change a profile that will be used as a group profile, only give authority to the group that you want every member of the group to have. This also goes for resource authority such as for files, programs, libraries or anything else. That&#8217;s one of the major reasons for group profiles &#8212; authorities only need to be given to one profile, and it becomes effective for every member.</p>
<p>This helps when a new employee needs a profile. Create the user profile and assign the appropriate group. The new employee immediately has all authorities needed to work as a member of that group.</p>
<p>When you change a user to be a member of a group, you should also decide how you want to set the OWNER(), GRPAUT() and GRPAUTTYP() parameters for members. If a member creates a new object, should it belong to that member or should it automatically belong to the group? Should authority to any new object be made available to the group? By assigning ownership to the group, a member profile can be deleted without needing to handle any objects that the member created. But those parameters are up to you to decide over.</p>
<p>That&#8217;s the major elements. Details will always be up to the site that uses the profiles.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: dsfdsfjsfkfds</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/#comment-97967</link>
		<dc:creator>dsfdsfjsfkfds</dc:creator>
		<pubDate>Wed, 19 Oct 2011 02:25:51 +0000</pubDate>
		<guid isPermaLink="false">#comment-97967</guid>
		<description><![CDATA[Hi ,

Can any one give me clear steps to how to create a new group profile and how to add this group to userprofiles?]]></description>
		<content:encoded><![CDATA[<p>Hi ,</p>
<p>Can any one give me clear steps to how to create a new group profile and how to add this group to userprofiles?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: teandy</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/#comment-69962</link>
		<dc:creator>teandy</dc:creator>
		<pubDate>Wed, 04 Nov 2009 17:07:40 +0000</pubDate>
		<guid isPermaLink="false">#comment-69962</guid>
		<description><![CDATA[In our environment we have multiple divisions, each with their own data libraries. We use group profiles to secure the libraries so that one division can not get into other divisions data.  As an extra security measure we set the password for these profiles to *NONE.]]></description>
		<content:encoded><![CDATA[<p>In our environment we have multiple divisions, each with their own data libraries. We use group profiles to secure the libraries so that one division can not get into other divisions data.  As an extra security measure we set the password for these profiles to *NONE.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: tomliotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/#comment-69919</link>
		<dc:creator>tomliotta</dc:creator>
		<pubDate>Wed, 04 Nov 2009 03:51:53 +0000</pubDate>
		<guid isPermaLink="false">#comment-69919</guid>
		<description><![CDATA[AFAIK, there is no reason to set password *NONE for a group profile, except of course if that profile is one that you don&#039;t want signing on for some reason. A group profile has no significant extra authority. By definition, members of a group have the authority of the group. So signing on as a member is practically equivalent to signing on as the group profile itself.

Tom]]></description>
		<content:encoded><![CDATA[<p>AFAIK, there is no reason to set password *NONE for a group profile, except of course if that profile is one that you don&#8217;t want signing on for some reason. A group profile has no significant extra authority. By definition, members of a group have the authority of the group. So signing on as a member is practically equivalent to signing on as the group profile itself.</p>
<p>Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: mcl</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/creating-a-user-profile/#comment-62052</link>
		<dc:creator>mcl</dc:creator>
		<pubDate>Wed, 08 Apr 2009 18:59:37 +0000</pubDate>
		<guid isPermaLink="false">#comment-62052</guid>
		<description><![CDATA[For a group profile, make sure you specify *NONE for the User Password - especially if you want to manage the profiles through iSeries Navigator.

For any users that are part of the group, in addition to changing the &quot;Group Profile&quot;  value, you may also want to change the &quot;Owner&quot; value to *GRPPRF. 

Regards
Mike]]></description>
		<content:encoded><![CDATA[<p>For a group profile, make sure you specify *NONE for the User Password &#8211; especially if you want to manage the profiles through iSeries Navigator.</p>
<p>For any users that are part of the group, in addition to changing the &#8220;Group Profile&#8221;  value, you may also want to change the &#8220;Owner&#8221; value to *GRPPRF. </p>
<p>Regards<br />
Mike</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 3/10 queries in 0.042 seconds using memcached
Object Caching 323/329 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-18 16:40:38 -->