<?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 exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651087#M879366</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You could try searching the main program for "userexit_"&lt;/P&gt;&lt;P&gt;This would give you a list of all the available user exits within the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Customer exits, you could search SMOD with a short description ex: order in the F4 help. Another way is to search for CUSTOMER-FUNCTION in the main program. You can then navigate to the enhancement in the customer function and use the Z Program in the enhancement.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.easymarketplace.de/userexit.php" target="test_blank"&gt;http://www.easymarketplace.de/userexit.php&lt;/A&gt; - has a complete list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More specifically, in case you're looking for SD exits - &lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Apr 2008 12:16:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-09T12:16:37Z</dc:date>
    <item>
      <title>tcode exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651084#M879363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       is there any tcode where i enter the tcode and it gives me the exits implemented for that tcode , not the list of exits for the tcode.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 08:30:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651084#M879363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T08:30:01Z</dc:date>
    </item>
    <item>
      <title>Re: tcode exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651085#M879364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is no Tcode but you can use the following custom program to find out the Active exits in a package. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Report  ZTEST_READ_EXIT
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*

REPORT  ztest_read_exit.

TYPE-POOLS: abap.

TYPES: BEGIN OF types_exits,
       obj_name TYPE obj_name,
       korrnum  TYPE trkorr_old,
       cproject TYPE cproject,
       project  TYPE modname,
       active   TYPE abadr_flag,
       END OF types_exits.


CONSTANTS: c_prog TYPE pgmid     VALUE 'R3TR',
           c_exit TYPE trobjtype VALUE 'SMOD'.


DATA: gt_exits TYPE STANDARD TABLE OF types_exits.

SELECTION-SCREEN: BEGIN OF BLOCK b1 WITH FRAME TITLE text-s01.
PARAMETER: p_dev TYPE devclass OBLIGATORY,
           p_act TYPE boole_d DEFAULT abap_true.
SELECTION-SCREEN: END OF BLOCK b1.



** Start of Selection

START-OF-SELECTION.


  SELECT obj_name
         korrnum
         cproject
         FROM tadir INTO TABLE gt_exits
         WHERE pgmid    = c_prog
           AND object   = c_exit
           AND devclass = p_dev.
  IF sy-subrc = 0.
** Modify the table to find only active exits.
    PERFORM sub_find_active.
** Display the output
    PERFORM sub_display_output.
  ELSE.

  ENDIF.
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  SUB_FIND_ACTIVE
*&amp;amp;---------------------------------------------------------------------*
*       Find Only Active Exits
*----------------------------------------------------------------------*
FORM sub_find_active .

  FIELD-SYMBOLS: &amp;lt;l_exit&amp;gt; TYPE types_exits.

  DATA: l_mod TYPE modmember.


  LOOP AT gt_exits ASSIGNING &amp;lt;l_exit&amp;gt;.

    l_mod = &amp;lt;l_exit&amp;gt;-obj_name.

    CALL FUNCTION 'ABADR_CHECK_EXIT_ACTIVE'
      EXPORTING
        i_enhancement = l_mod
      IMPORTING
        e_project     = &amp;lt;l_exit&amp;gt;-project
        e_is_active   = &amp;lt;l_exit&amp;gt;-active.

  ENDLOOP.

  IF p_act = abap_true.
    DELETE gt_exits WHERE active EQ abap_false.
  ENDIF.

ENDFORM.                    " SUB_FIND_ACTIVE
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  SUB_DISPLAY_OUTPUT
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
FORM sub_display_output .

  DATA: lt_return   TYPE REF TO cl_salv_table.
** Call the SALV table
  TRY.
      CALL METHOD cl_salv_table=&amp;gt;factory
        IMPORTING
          r_salv_table = lt_return
        CHANGING
          t_table      = gt_exits.
    CATCH cx_salv_msg .
  ENDTRY.
** Display the output
  lt_return-&amp;gt;display( ).

ENDFORM.                    " SUB_DISPLAY_OUTPUT

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope That Helps&lt;/P&gt;&lt;P&gt;Anirban M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 10:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651085#M879364</guid>
      <dc:creator>former_member480923</dc:creator>
      <dc:date>2008-04-09T10:15:14Z</dc:date>
    </item>
    <item>
      <title>Re: tcode exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651086#M879365</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;&lt;/P&gt;&lt;P&gt;   apart from this any other method....this also solves the problem but it's not a permanent solution....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 11:43:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651086#M879365</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T11:43:01Z</dc:date>
    </item>
    <item>
      <title>Re: tcode exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651087#M879366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;   You could try searching the main program for "userexit_"&lt;/P&gt;&lt;P&gt;This would give you a list of all the available user exits within the application.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Customer exits, you could search SMOD with a short description ex: order in the F4 help. Another way is to search for CUSTOMER-FUNCTION in the main program. You can then navigate to the enhancement in the customer function and use the Z Program in the enhancement.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.easymarketplace.de/userexit.php" target="test_blank"&gt;http://www.easymarketplace.de/userexit.php&lt;/A&gt; - has a complete list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;More specifically, in case you're looking for SD exits - &lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/1c/f62c7dd435d1118b3f0060b03ca329/content.htm&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 12:16:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651087#M879366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T12:16:37Z</dc:date>
    </item>
    <item>
      <title>Re: tcode exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651088#M879367</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;one more procedure &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;steps &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) GOTO SE93 TCODE &lt;/P&gt;&lt;P&gt;2)ENTER THE TCODE WHICH YOU WANT TO FIND THE USER EXIT &lt;/P&gt;&lt;P&gt;3)CLICK ON DISPLAY &lt;/P&gt;&lt;P&gt;4)DOUBLE CLICK ON THE PROGRAM NAME &lt;/P&gt;&lt;P&gt;5)IT WILL TAKE YOU TO THE PROGRAM &lt;/P&gt;&lt;P&gt;6)GOTO -&amp;gt; ATTRIBUTES &lt;/P&gt;&lt;P&gt;7)TAKE THE PACKAGE NAME &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;NEXT OPEN ANOTHER TCODE CMOD &lt;/P&gt;&lt;P&gt;1)PRESS F4 &lt;/P&gt;&lt;P&gt;2)CLICK ON INFORMATION SYSTEM &lt;/P&gt;&lt;P&gt;3)ENTER THE PACKGE NAME &lt;/P&gt;&lt;P&gt;4) CLICK ON OK &lt;/P&gt;&lt;P&gt;5)IT WILL GIVE LIST OF USER EXITS AVAILBALE FOR THAT TCODE&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Apr 2008 12:25:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/tcode-exit/m-p/3651088#M879367</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-09T12:25:13Z</dc:date>
    </item>
  </channel>
</rss>

