<?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: Tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659264#M292364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use authorization object to reset profile&lt;/P&gt;&lt;P&gt;    for user to execute VL01 transaction   &lt;/P&gt;&lt;P&gt;     or use sm01 transaction to lock tcode for user&lt;/P&gt;&lt;P&gt;     also check  &lt;/P&gt;&lt;P&gt;         AUTHORITY-CHECK OBJECT 'S_TCODE'&lt;/P&gt;&lt;P&gt;           ID 'TCD' FIELD 'VL01'.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;        MESSAGE E000 WITH TEXT-152.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 27 Oct 2006 10:36:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-27T10:36:48Z</dc:date>
    <item>
      <title>Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659258#M292358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;      I have a requirement where user should not directly execute tcode VL01, but in a program I have used BDC and made 'Call transaction ' to VL01 and this should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How would I restrict users to directly use the tcode. Any user-exits in VL01 by which I can stop if the tcode is directly called and enable call transaction to carry on.I have list of user-exits for VL01, pls suggest which one is appropriate or any alternative that serves this requirement. Is there any special authorization for this kind of requirement?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;Vishnu Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 09:21:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659258#M292358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T09:21:38Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659259#M292359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Lock transaction code with the transaction SM01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 09:23:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659259#M292359</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2006-10-26T09:23:53Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659260#M292360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frederic,&lt;/P&gt;&lt;P&gt;             I have tried by locking the tcode using SM01. But then, ' Call transaction' also didn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vishnu Priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vishnu priya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 09:25:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659260#M292360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T09:25:19Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659261#M292361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry the below wont work...forgot that the ABAP is using the particular transaction. In that case you need to check the user_exit and if the calling program is you zprogram than allow the posting else error message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;---XXX-&lt;/P&gt;&lt;P&gt;There are few ways to tackle the issue &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Lock the transaction as suggested in the forum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Remove the entry from TSTC table which would mean the users cannot use the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Use authorization profile to achieve the result assign it in a way where the particular transaction is not available to the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anurag Bankley&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Oct 2006 09:27:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659261#M292361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-26T09:27:28Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659262#M292362</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;I think this is a BASIS issue. &lt;/P&gt;&lt;P&gt;Necessary changes need to be made in user roles so that he/she cannot execute VL01 directly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:27:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659262#M292362</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-27T10:27:26Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659263#M292363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;This is a basis issue and for restricting this pl ask your basis person to inactivate the object &amp;lt;b&amp;gt;V_LIKP_VST&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;in the authorization role for the said user.Try this and pl let me know.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:36:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659263#M292363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-27T10:36:07Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659264#M292364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    use authorization object to reset profile&lt;/P&gt;&lt;P&gt;    for user to execute VL01 transaction   &lt;/P&gt;&lt;P&gt;     or use sm01 transaction to lock tcode for user&lt;/P&gt;&lt;P&gt;     also check  &lt;/P&gt;&lt;P&gt;         AUTHORITY-CHECK OBJECT 'S_TCODE'&lt;/P&gt;&lt;P&gt;           ID 'TCD' FIELD 'VL01'.&lt;/P&gt;&lt;P&gt;      IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;        MESSAGE E000 WITH TEXT-152.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;amole&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 Oct 2006 10:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659264#M292364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-27T10:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659265#M292365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;Is your prob solved?&lt;/P&gt;&lt;P&gt;Pl let me know&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 31 Oct 2006 09:47:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659265#M292365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-31T09:47:27Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659266#M292366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi everybody,&lt;/P&gt;&lt;P&gt;                           Thanks for your responses. The problem is solved by checking the system variable 'sy-calld'  which distinguishes whether a transaction is called in dialogue mode or non-dialogue mode(BDC call transaction stmt)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Vishnu Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Dec 2006 06:10:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659266#M292366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-20T06:10:52Z</dc:date>
    </item>
    <item>
      <title>Re: Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659267#M292367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I use transaction SM01 to lock a transaction and soon I add to a user SAP_ALL profile this user could use the transaction previously locked?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 16:18:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode/m-p/1659267#M292367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T16:18:55Z</dc:date>
    </item>
  </channel>
</rss>

