<?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: Change authorization in Debugging mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140064#M746232</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2014 01:58:32 GMT</pubDate>
    <dc:creator>Loed</dc:creator>
    <dc:date>2014-06-25T01:58:32Z</dc:date>
    <item>
      <title>Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140057#M746225</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;If it is not allowed to go to specific transaction, how I change authorization in debugging mode?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 07:11:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140057#M746225</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T07:11:44Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140058#M746226</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Helen, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before executing  transaction code, put debugger switch on by '/h. &lt;/P&gt;&lt;P&gt;The change the value of sy-subrc after executing FM molue for authorization check. I guess function module might be 'AUTHORITY_CHECK_TCODE'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rajeswari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 08:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140058#M746226</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T08:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140059#M746227</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;Use the FM 'TRANSACTION_CALL'.put a break point in it and then execute,speify the transaction code u want and then execute..it will stop at the breakpoint and then change sy-subrc value and then press F8.it will take u to the transaction whcih u want to see..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reagrds,&lt;/P&gt;&lt;P&gt;nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 08:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140059#M746227</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-12-14T08:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140060#M746228</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;We have to call this Module in PBO event of the initial screen flow logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;here we call authority check object******&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FORM authority_check_zmdepick.&lt;/P&gt;&lt;P&gt;  AUTHORITY-CHECK OBJECT 'L_TCODE' &lt;/P&gt;&lt;P&gt;                       ID 'TCD' FIELD sy-tcode.&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;*User doent have authorization this tcode.so it comes out&lt;/P&gt;&lt;P&gt;    MESSAGE i010(zmde) WITH sy-tcode.&lt;/P&gt;&lt;P&gt;    LEAVE TO SCREEN 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " authority_check_zmdepick&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Put breakpoint at AUTHORITY-CHECK OBJECT  stmt when program is in active mode.&lt;/P&gt;&lt;P&gt;At run time whenever sy-subrc NE 0 means you change it 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In fields value you give sy-subrc .it wuill display some value right side.there you remove any other value and put 0 and click right side change button for that row.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sivaparvathi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 08:19:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140060#M746228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T08:19:34Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140061#M746229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;its very easy as told above&lt;/P&gt;&lt;P&gt;at sap main menu&lt;/P&gt;&lt;P&gt;go to transaction se93&lt;/P&gt;&lt;P&gt;in the command field write /h and press enter/continue&lt;/P&gt;&lt;P&gt;this will initiate debugger&lt;/P&gt;&lt;P&gt;now enter the transaction code eg se38&lt;/P&gt;&lt;P&gt;on pressing continue  a debugger window will viewed &lt;/P&gt;&lt;P&gt;now press shift+F5&lt;/P&gt;&lt;P&gt;here write keyword MESSAGE and press continue&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;press F8&lt;/P&gt;&lt;P&gt;just above the line where cursor is placed you can see a if condition&lt;/P&gt;&lt;P&gt;click once on that line and press shift+F12&lt;/P&gt;&lt;P&gt;this takes the execution back to that line&lt;/P&gt;&lt;P&gt;now edit and change value of variable sy-subrc and rc in the right side of screen&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;repeat the above step in bold until the transaction is opened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; and change value of sy-subrc whenever sy-subrc not equal to 0&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Sumesh Nair&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Dec 2007 08:45:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140061#M746229</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-14T08:45:09Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140062#M746230</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;Put a breakpoint on line 49 of the Subroutine Pool AUTHORITY_CHECK_TCODE=========FT.&lt;/P&gt;&lt;P&gt;Then switch on the debugger by '/h' before entering the tcode. Put a breakpoint at the function module 'AUTH_CHECK_TCODE' and execute it. If the value of SY-SUBRC is not equal to 0, make it 0 and then press F8.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Atanu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Atanu Das @ work on Jul 27, 2009 1:52 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 27 Jul 2009 11:40:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140062#M746230</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-27T11:40:17Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140063#M746231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Jun 2014 02:53:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140063#M746231</guid>
      <dc:creator>Loed</dc:creator>
      <dc:date>2014-06-20T02:53:12Z</dc:date>
    </item>
    <item>
      <title>Re: Change authorization in Debugging mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140064#M746232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2014 01:58:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/change-authorization-in-debugging-mode/m-p/3140064#M746232</guid>
      <dc:creator>Loed</dc:creator>
      <dc:date>2014-06-25T01:58:32Z</dc:date>
    </item>
  </channel>
</rss>

