<?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: reg user exits. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489635#M839075</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;another way is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)goto SE93 and enter the Tcode &lt;/P&gt;&lt;P&gt;2)and click on display &lt;/P&gt;&lt;P&gt;3)double click on the program name given there &lt;/P&gt;&lt;P&gt;4)Goto-&amp;gt;Attributes&lt;/P&gt;&lt;P&gt;5)take the package name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and next &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Goto smod &lt;/P&gt;&lt;P&gt;2)click on F4&lt;/P&gt;&lt;P&gt;3)click on information system and enter that package name and click on ok &lt;/P&gt;&lt;P&gt;4)it will display list of user exit for that T-code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and after that you carry with that exit name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 04:35:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T04:35:34Z</dc:date>
    <item>
      <title>reg user exits.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489631#M839071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;" How to find out a User exit?."&lt;/P&gt;&lt;P&gt;&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;Narasimha Rao.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 03:53:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489631#M839071</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T03:53:52Z</dc:date>
    </item>
    <item>
      <title>Re: reg user exits.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489632#M839072</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hey .........this information is only for the beginner &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1.First u have find out the program name using t-code se93 and note down the program name.&lt;/P&gt;&lt;P&gt;2.Open the program in display mode and and in tools goto-&amp;gt;attributes and find out the package .&lt;/P&gt;&lt;P&gt;3.Go to the t-code smod and press f4 click on the information system and enter package name and click on the rigth button .&lt;/P&gt;&lt;P&gt;4. u will find all the user exits .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 04:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489632#M839072</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T04:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: reg user exits.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489633#M839073</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Source Code to find User Exits 1&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YSMOD2 &lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION TEXTS : INPUT1 -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Enter search term for Trxn. &lt;/P&gt;&lt;P&gt;INPUT2 -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;&amp;gt; Enter type of exit &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;REPORT YSMOD2 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MODSAP, MODACT, TSTC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: INPUT1 LIKE TSTC-TCODE DEFAULT ' ',&lt;/P&gt;&lt;P&gt;INPUT2 LIKE MODSAP-TYP DEFAULT ' '.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: SEARCH1(6),&lt;/P&gt;&lt;P&gt;SEARCH2(3),&lt;/P&gt;&lt;P&gt;SEARCH3 LIKE MODSAP-MEMBER.&lt;/P&gt;&lt;P&gt;DATA : FIRST_ROW VALUE 'Y'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE: '%' INPUT1 '%' INTO SEARCH1,&lt;/P&gt;&lt;P&gt;'%' INPUT2 INTO SEARCH2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM TSTC WHERE TCODE LIKE SEARCH1.&lt;/P&gt;&lt;P&gt;FIRST_ROW = 'Y'.&lt;/P&gt;&lt;P&gt;CHECK TSTC-PGMNA NE SPACE.&lt;/P&gt;&lt;P&gt;CONCATENATE '%' TSTC-PGMNA '%' INTO SEARCH3.&lt;/P&gt;&lt;P&gt;SELECT * FROM MODSAP WHERE TYP LIKE SEARCH2&lt;/P&gt;&lt;P&gt;AND MEMBER LIKE SEARCH3.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM MODACT WHERE MEMBER = MODSAP-NAME.&lt;/P&gt;&lt;P&gt;IF FIRST_ROW EQ 'Y'.&lt;/P&gt;&lt;P&gt;WRITE: /0 TSTC-TCODE, 6 TSTC-PGMNA, 16 MODSAP-NAME, 32 MODSAP-TYP,&lt;/P&gt;&lt;P&gt;45 MODSAP-MEMBER, 70 MODACT-NAME.&lt;/P&gt;&lt;P&gt;FIRST_ROW = 'N'.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;WRITE: /16 MODSAP-NAME, 32 MODSAP-TYP, 45 MODSAP-MEMBER, 70 MODACT-NAME.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR : MODSAP, MODACT.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;WRITE : /0 TSTC-TCODE, 6 TSTC-PGMNA, 30 'No exits found'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;CLEAR TSTC.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;CLEAR: SEARCH1, SEARCH2, SEARCH3.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="4537751"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Plzz reward if it is useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 04:26:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489633#M839073</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T04:26:38Z</dc:date>
    </item>
    <item>
      <title>Re: reg user exits.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489634#M839074</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;****PROGRAM FOR FINDOUT THE USER EXITS IN THE SAP STANDARD PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZNNR_537&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZNNR_537  NO STANDARD PAGE HEADING.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : TSTC, TADIR, MODSAPT, MODACT, TRDIR, TFDIR, ENLFDIR.&lt;/P&gt;&lt;P&gt;TABLES : TSTCT.&lt;/P&gt;&lt;P&gt;DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;DATA : FIELD1(30).&lt;/P&gt;&lt;P&gt;DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.&lt;/P&gt;&lt;P&gt;PARAMETERS : P_TCODE LIKE TSTC-TCODE OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC EQ 0.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'&lt;/P&gt;&lt;P&gt;                   AND OBJECT = 'PROG'&lt;/P&gt;&lt;P&gt;                   AND OBJ_NAME = TSTC-PGMNA.&lt;/P&gt;&lt;P&gt;  MOVE : TADIR-DEVCLASS TO V_DEVCLASS.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;    SELECT SINGLE * FROM TRDIR WHERE NAME = TSTC-PGMNA.&lt;/P&gt;&lt;P&gt;    IF TRDIR-SUBC EQ 'F'.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE * FROM TFDIR WHERE PNAME = TSTC-PGMNA.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE * FROM ENLFDIR WHERE FUNCNAME =&lt;/P&gt;&lt;P&gt;      TFDIR-FUNCNAME.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE * FROM TADIR WHERE PGMID = 'R3TR'&lt;/P&gt;&lt;P&gt;                         AND OBJECT = 'FUGR'&lt;/P&gt;&lt;P&gt;                         AND OBJ_NAME EQ ENLFDIR-AREA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE : TADIR-DEVCLASS TO V_DEVCLASS.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  SELECT * FROM TADIR INTO TABLE JTAB&lt;/P&gt;&lt;P&gt;                WHERE PGMID = 'R3TR'&lt;/P&gt;&lt;P&gt;                  AND OBJECT = 'SMOD'&lt;/P&gt;&lt;P&gt;                  AND DEVCLASS = V_DEVCLASS.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM TSTCT WHERE SPRSL EQ SY-LANGU AND&lt;/P&gt;&lt;P&gt;                                   TCODE EQ P_TCODE.&lt;/P&gt;&lt;P&gt;  FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.&lt;/P&gt;&lt;P&gt;  WRITE:/(19) 'Transaction Code - ',&lt;/P&gt;&lt;P&gt;       20(20) P_TCODE,&lt;/P&gt;&lt;P&gt;       45(50) TSTCT-TTEXT.&lt;/P&gt;&lt;P&gt;  SKIP.&lt;/P&gt;&lt;P&gt;  IF NOT JTAB[] IS INITIAL.&lt;/P&gt;&lt;P&gt;    WRITE:/(95) SY-ULINE.&lt;/P&gt;&lt;P&gt;    FORMAT COLOR COL_HEADING INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;    WRITE:/1 SY-VLINE,&lt;/P&gt;&lt;P&gt;           2 'Exit Name',&lt;/P&gt;&lt;P&gt;          21 SY-VLINE ,&lt;/P&gt;&lt;P&gt;          22 'Description',&lt;/P&gt;&lt;P&gt;          95 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE:/(95) SY-ULINE.&lt;/P&gt;&lt;P&gt;    LOOP AT JTAB.&lt;/P&gt;&lt;P&gt;      SELECT SINGLE * FROM MODSAPT&lt;/P&gt;&lt;P&gt;             WHERE SPRSL = SY-LANGU AND&lt;/P&gt;&lt;P&gt;                    NAME = JTAB-OBJ_NAME.&lt;/P&gt;&lt;P&gt;      FORMAT COLOR COL_NORMAL INTENSIFIED OFF.&lt;/P&gt;&lt;P&gt;      WRITE:/1 SY-VLINE,&lt;/P&gt;&lt;P&gt;             2 JTAB-OBJ_NAME HOTSPOT ON,&lt;/P&gt;&lt;P&gt;            21 SY-VLINE ,&lt;/P&gt;&lt;P&gt;            22 MODSAPT-MODTEXT,&lt;/P&gt;&lt;P&gt;            95 SY-VLINE.&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;    WRITE:/(95) SY-ULINE.&lt;/P&gt;&lt;P&gt;    DESCRIBE TABLE JTAB.&lt;/P&gt;&lt;P&gt;    SKIP.&lt;/P&gt;&lt;P&gt;    FORMAT COLOR COL_TOTAL INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;    WRITE:/ 'No of Exits:' , SY-TFILL.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;    WRITE:/(95) 'No User Exit exists'.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.&lt;/P&gt;&lt;P&gt;  WRITE:/(95) 'Transaction Code Does Not Exist'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT LINE-SELECTION.&lt;/P&gt;&lt;P&gt;  GET CURSOR FIELD FIELD1.&lt;/P&gt;&lt;P&gt;  CHECK FIELD1(4) EQ 'JTAB'.&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).&lt;/P&gt;&lt;P&gt;  CALL TRANSACTION 'SMOD' AND SKIP FIRST   SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;execute this program and enter the T-code and execute &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will give list of exits for that tcode&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 04:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489634#M839074</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T04:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: reg user exits.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489635#M839075</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;another way is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)goto SE93 and enter the Tcode &lt;/P&gt;&lt;P&gt;2)and click on display &lt;/P&gt;&lt;P&gt;3)double click on the program name given there &lt;/P&gt;&lt;P&gt;4)Goto-&amp;gt;Attributes&lt;/P&gt;&lt;P&gt;5)take the package name &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and next &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)Goto smod &lt;/P&gt;&lt;P&gt;2)click on F4&lt;/P&gt;&lt;P&gt;3)click on information system and enter that package name and click on ok &lt;/P&gt;&lt;P&gt;4)it will display list of user exit for that T-code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and after that you carry with that exit name&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 04:35:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-user-exits/m-p/3489635#M839075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T04:35:34Z</dc:date>
    </item>
  </channel>
</rss>

