<?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: Authorization objects and Roles in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152766#M992949</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7f6d505211d189550000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7f6d505211d189550000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Jul 2008 10:13:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-22T10:13:09Z</dc:date>
    <item>
      <title>Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152762#M992945</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please let me know, how authorization objects created in SU21 gets linked to a role a user, I did search before posting but didn't find any relevant answer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 09:54:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152762#M992945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T09:54:48Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152763#M992946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ratan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AUthory check is nothing but the authorization created for specific user or restrictions for users to particular transactions etc.....e.g. I can not access SU21 trasanction on client SAP system because I am not authorizaed to view the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ok....For this you need to --&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. GO to SU21.&lt;/P&gt;&lt;P&gt;2. Create Object Class first.&lt;/P&gt;&lt;P&gt;3. Create Authorization Object and assign the class to the same.&lt;/P&gt;&lt;P&gt;4. While creating the Object you need to provide the fields for which you need authorization.&lt;/P&gt;&lt;P&gt;5. First provide field ACTVT and then your fieldname.&lt;/P&gt;&lt;P&gt;6. Save and Activate....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your Program call FM 'AUTHORITY_CHECK' ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Authority check for Pur Org and Plant&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AUTHORITY_CHECK'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;  USER = SY-UNAME&lt;/P&gt;&lt;P&gt;  OBJECT = 'ZM02'&lt;/P&gt;&lt;P&gt;  FIELD1 = 'EKORG'        "Provided while creating Auth Objects&lt;/P&gt;&lt;P&gt;  field2 = 'WERKS'       ""Provided while creating Auth Objects&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;  USER_DONT_EXIST = 1&lt;/P&gt;&lt;P&gt;  USER_IS_AUTHORIZED = 2&lt;/P&gt;&lt;P&gt;  USER_NOT_AUTHORIZED = 3&lt;/P&gt;&lt;P&gt;  USER_IS_LOCKED = 4&lt;/P&gt;&lt;P&gt;  OTHERS = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Roles&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAP Security will create the roles. This is not related to ABAP people....They will define the roles according to the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;CoolDeep.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:03:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152763#M992946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:03:52Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152764#M992947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in SU21 u will creat Autho.Objects on the required Fields , and activity as well , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ex.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Au.Object for Comany COde .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Z_BUKRS_XXXX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;fields -&amp;gt;BUKRS&lt;/P&gt;&lt;P&gt;        --&amp;gt;Activity.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and u will add this authorization Objects in the User Profiles , with values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:06:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152764#M992947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:06:46Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152765#M992948</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ratan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can try the following links for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.thespot4sap.com/Articles/SAP_BC_Authorization_Concept.asp" target="test_blank"&gt;http://www.thespot4sap.com/Articles/SAP_BC_Authorization_Concept.asp&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and also SAP online help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Authorization objects.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/52/671285439b11d1896f0000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/52/671285439b11d1896f0000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Role administration.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/52/6714a9439b11d1896f0000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/52/6714a9439b11d1896f0000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152765#M992948</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152766#M992949</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7f6d505211d189550000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/c4/3a7f6d505211d189550000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152766#M992949</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Authorization objects and Roles</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152767#M992950</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;STRONG&gt;Ratan&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Creating Authorization Roles&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;You can create a new authorization role in the SAP system with the Create/Convert Role function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prerequisites&lt;/P&gt;&lt;P&gt;To monitor and maintain the data transferred from the portal to the SAP system you need role administration authorization (see Authorizations).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Procedure To create a new authorization role:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;... 1. Start transaction WP3R.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The initial screen for role administration, Follow-Up Processes for Portal Roles, appears.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. On the initial screen, select Maintain Authorization Roles and run the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A report is displayed containing all portal roles and the authorization roles associated with them. Roles transferred from the portal are highlighted in blue. The warning icon allows you to identify that there are no authorization roles for these roles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If a role is highlighted in red, it has been deleted in the portal.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. To find out which services there are for a role, expand the structure of the relevant role, select a logical system, and choose Goto ® Service list or .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If SAP Enterprise Portal has transferred services that are not supported in the current system, these are displayed in a separate section of the service list and ignored when the services are transferred to the authorization role.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. To close the window with the service list, choose Continue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Click the logical system and choose Authorization role ® Create/Convert or choose the icon next to the logical system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The system asks for the name of the new role. If you enter a name for which there is no role to date, the system creates a new one. You can also create more than one authorization role per logical system, depending on how many authorization versions you require.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you enter the name of an existing role, the system informs you that you can convert this role to an authorization role. The conversion can only take place if you enter the name of a root single role (not a derived role or a composite role).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When converting an existing role to an authorization role, the system assumes that the structure of the role is defined forthwith through the enterprise portal and role assignment is only assigned through the enterprise portal. During conversion, a dialog box points out the consequences.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The services of the portal role are immediately transferred to the menu structure of the new role. You can also use the Create/Convert function for authorization roles. It can be used to create derived authorization roles.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A warning is given if no authorization roles were yet created for the services of a portal role for a logical system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You Can follow the below links it would be halpfull for you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a92195a9-0b01-0010-909c-f330ea4a585c&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c1/db3fc2fd3111d5997a00508b6b8b11/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c1/db3fc2fd3111d5997a00508b6b8b11/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Jul 2008 10:19:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/authorization-objects-and-roles/m-p/4152767#M992950</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-22T10:19:36Z</dc:date>
    </item>
  </channel>
</rss>

