<?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 SM30 authorization in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794640#M912665</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to add an authorization object to a generated maintainance table view (to be used in sm30) so that the users can only see or add speficic entries to the table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 May 2008 08:54:07 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-15T08:54:07Z</dc:date>
    <item>
      <title>SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794640#M912665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible to add an authorization object to a generated maintainance table view (to be used in sm30) so that the users can only see or add speficic entries to the table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 08:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794640#M912665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T08:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794641#M912666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its possible.&lt;/P&gt;&lt;P&gt;Hope you know the screen number of your maintenance view.&lt;/P&gt;&lt;P&gt;While creating the maintenance view it will ask you for screen number other wise go to se11 and give the table name and go to utilities table maintenance generator THERE your can find the screen number double click ok that screen screen will be open in that PBO of the logic you can write your authorization code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madan.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 08:58:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794641#M912666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T08:58:24Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794642#M912667</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;do this way  ... Go to Function Group source code Create a custom include and write the below custom code in a module &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
module check_autho.
* Authority Check
  authority-check object 'M_RAHM_EKO'
     id 'EKORG' field 'ZMP18-EKORG'
     id 'ACTVT' field '01'
     id 'ACTVT' field '02'
     id 'ACTVT' field '04'
     id 'ACTVT' field '09'.
  if sy-subrc &amp;lt;&amp;gt; 0.
    message e000(zz) with
      'You are not authorized to update ZMP18 table for Purchase Org.' zmp18-ekorg.
  endif.
endmodule.
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;In the PAI of flow logic of that overview screen after module set_update_flag on change request write the below custom code  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 module set_update_flag on chain-request.
   endchain.
*Start
   chain.
    field zmp18-ekorg.
    module check_autho.
   endchain.
*End
 &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 May 2008 09:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794642#M912667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-15T09:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794643#M912668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;That allows me to check if the user as authorization to change/create that entry.&lt;/P&gt;&lt;P&gt;But is there a way to hide the entries that the user as no authorization for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 18 May 2008 17:07:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794643#M912668</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-18T17:07:07Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794644#M912669</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;to put authorizatuion u can do it in two ways..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;either create views or put sm range in data elemnt..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if found useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 13:46:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794644#M912669</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T13:46:04Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794645#M912670</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't want to have to create views since then i would not be able to check them agains the authorization object.&lt;/P&gt;&lt;P&gt;What do you mean by "put sm range in data elemnt"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Nuno Silva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 19 May 2008 18:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794645#M912670</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-19T18:24:50Z</dc:date>
    </item>
    <item>
      <title>Re: SM30 authorization</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794646#M912671</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nuno,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Typically, the only auth objs allowed in View maintenance (SE54) were S_TABU_DIS and S_TABU_CLI. Later, the S_TABU_LIN was introduced.&lt;/P&gt;&lt;P&gt;Using S_TABU_LIN, you could maintain row-wise authorization for users, based on organizational units.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More info is available in help portal link - [S_TABU_LIN|http://help.sap.com/saphelp_47x200/helpdata/en/6d/56cdd3edabc14ebd1bc84dae20dec8/content.htm]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check if this is useful in your case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Rekha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 May 2008 09:54:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sm30-authorization/m-p/3794646#M912671</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-22T09:54:21Z</dc:date>
    </item>
  </channel>
</rss>

