<?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: Transaction Call in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936597#M942058</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u should try nd use the following&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AUTHORITY_CHECK_TCODE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      tcode  = t_code&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ok     = 0&lt;/P&gt;&lt;P&gt;      not_ok = 2&lt;/P&gt;&lt;P&gt;      OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this u can check on to the authorizations of the user fr running the transactions....&lt;/P&gt;&lt;P&gt;hope it helps .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take care&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 04 Jun 2008 05:59:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-04T05:59:38Z</dc:date>
    <item>
      <title>Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936595#M942056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I'm doing transaction call, but I need to know if the user has permission to the transaction. How can I do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank´&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 20:02:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936595#M942056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T20:02:04Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936596#M942057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello.&lt;/P&gt;&lt;P&gt;check this as below:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*...Check if the user has authority to run the t/code
  CALL FUNCTION 'AUTHORITY_CHECK_TCODE'
    EXPORTING
      tcode  = lv_tcode
    EXCEPTIONS
      ok     = 0
      not_ok = 2
      OTHERS = 3.

  IF sy-subrc &amp;lt;&amp;gt; 0.
    MESSAGE e003(zv) WITH text-e01 sy-tcode.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_tcode is the transaction you want to call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction will never check authorizations hence use this FM before call transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;ags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Agasti Kale on Jun 3, 2008 10:04 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jun 2008 20:04:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936596#M942057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-03T20:04:47Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936597#M942058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u should try nd use the following&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'AUTHORITY_CHECK_TCODE'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      tcode  = t_code&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      ok     = 0&lt;/P&gt;&lt;P&gt;      not_ok = 2&lt;/P&gt;&lt;P&gt;      OTHERS = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using this u can check on to the authorizations of the user fr running the transactions....&lt;/P&gt;&lt;P&gt;hope it helps .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;take care&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 05:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936597#M942058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T05:59:38Z</dc:date>
    </item>
    <item>
      <title>Re: Transaction Call</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936598#M942059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, Thank you for the information.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards&lt;/P&gt;&lt;P&gt;L.Fernando&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 04 Jun 2008 12:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/transaction-call/m-p/3936598#M942059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-04T12:11:33Z</dc:date>
    </item>
  </channel>
</rss>

