<?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: SAP: How to Create and Use the Authorization Objects in ABAP</title>
	<atom:link href="http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/</link>
	<description>Just another WordPress weblog</description>
	<pubDate>Sun, 20 May 2012 01:26:29 +0000</pubDate>
	<generator>http://wordpress.org/?v=2.7</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>By: Selva@sapsecuritytrainer.coms</title>
		<link>http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/comment-page-1/#comment-74</link>
		<dc:creator>Selva@sapsecuritytrainer.coms</dc:creator>
		<pubDate>Thu, 17 Mar 2011 14:55:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardsantos.net/?p=88#comment-74</guid>
		<description>One of the issues we ran into was when we disable the authorization check in SU24 the transaction skipped the ABAP code check.  This could be security risk if some one can disable the check perform the transaction by passing the authorization check


www.sapsecuritytrainer.com
From home maker to SAP Consultant</description>
		<content:encoded><![CDATA[<p>One of the issues we ran into was when we disable the authorization check in SU24 the transaction skipped the ABAP code check.  This could be security risk if some one can disable the check perform the transaction by passing the authorization check</p>
<p><a href="http://www.sapsecuritytrainer.com" rel="nofollow">http://www.sapsecuritytrainer.com</a><br />
From home maker to SAP Consultant</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Sushil</title>
		<link>http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/comment-page-1/#comment-73</link>
		<dc:creator>Sushil</dc:creator>
		<pubDate>Thu, 12 Aug 2010 08:38:39 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardsantos.net/?p=88#comment-73</guid>
		<description>in the above , why is the following line required?

8. And also don’t forget to add the S_TCODE authorization object and enter ZCOMM on it’s field.</description>
		<content:encoded><![CDATA[<p>in the above , why is the following line required?</p>
<p>8. And also don’t forget to add the S_TCODE authorization object and enter ZCOMM on it’s field.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Terry</title>
		<link>http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/comment-page-1/#comment-71</link>
		<dc:creator>Terry</dc:creator>
		<pubDate>Wed, 05 Aug 2009 11:08:57 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardsantos.net/?p=88#comment-71</guid>
		<description>Hi..

"select transaction SU24 and I add the new object. Does it work?"

The answer is Yes and No.
The authorisation checks are called in the ABAP program, so it depends on how the ABAP has been written.
So ABAP programs check for named authorization objects.. some ABAP programs check the SU24 tables ( USOBT &#38; USOBT_c)
So you can add an authorization into SU24, but the system may not check it.
 Check the ABAP code..
look for something like this

AUTHORITY-CHECK OBJECT 'Z_TCODE'
ID 'ACTVT' FIELD '03' " read access
ID 'ZTCODE' FIELD p_tcode. " actual value
 or

AUTHORITY-CHECK OBJECT 'S_TRVL_BKS'
ID 'ACTVT' FIELD '02'
ID 'CUSTTYPE' FIELD 'B'.
IF SY-SUBRC  0.
MESSAGE E...
ENDIF.

Terry</description>
		<content:encoded><![CDATA[<p>Hi..</p>
<p>&#8220;select transaction SU24 and I add the new object. Does it work?&#8221;</p>
<p>The answer is Yes and No.<br />
The authorisation checks are called in the ABAP program, so it depends on how the ABAP has been written.<br />
So ABAP programs check for named authorization objects.. some ABAP programs check the SU24 tables ( USOBT &amp; USOBT_c)<br />
So you can add an authorization into SU24, but the system may not check it.<br />
 Check the ABAP code..<br />
look for something like this</p>
<p>AUTHORITY-CHECK OBJECT &#8216;Z_TCODE&#8217;<br />
ID &#8216;ACTVT&#8217; FIELD &#8216;03&#8242; &#8221; read access<br />
ID &#8216;ZTCODE&#8217; FIELD p_tcode. &#8221; actual value<br />
 or</p>
<p>AUTHORITY-CHECK OBJECT &#8216;S_TRVL_BKS&#8217;<br />
ID &#8216;ACTVT&#8217; FIELD &#8216;02&#8242;<br />
ID &#8216;CUSTTYPE&#8217; FIELD &#8216;B&#8217;.<br />
IF SY-SUBRC  0.<br />
MESSAGE E&#8230;<br />
ENDIF.</p>
<p>Terry</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Enrique</title>
		<link>http://www.richardsantos.net/2009/03/16/sap-how-to-create-and-use-the-authorization-objects-in-abap/comment-page-1/#comment-72</link>
		<dc:creator>Enrique</dc:creator>
		<pubDate>Mon, 06 Jul 2009 19:23:30 +0000</pubDate>
		<guid isPermaLink="false">http://www.richardsantos.net/?p=88#comment-72</guid>
		<description>Hi,

What about modify the stantard transaction to include the new authorization object?
If I select transaction SU24 and I add the new object. Does it work?</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>What about modify the stantard transaction to include the new authorization object?<br />
If I select transaction SU24 and I add the new object. Does it work?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

