<?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: User Exits for a Trans code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712098#M311427</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below code. Enter Transaction code and the output will be list of all the user exits associated with it.&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  ZUSEREXIT                                                   *&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; Finding the user-exits of a SAP transaction code                    *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp; Enter the transaction code in which you are looking for the         *&lt;/P&gt;&lt;P&gt;*&amp;amp; user-exit and it will list you the list of user-exits in the        *&lt;/P&gt;&lt;P&gt;*&amp;amp; transaction code. Also a drill down is possible which will help you *&lt;/P&gt;&lt;P&gt;*&amp;amp; to branch to SMOD.                                                  *&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 zuserexit NO STANDARD PAGE HEADING.&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;&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;&lt;/P&gt;&lt;P&gt;  MOVE : tadir-devclass TO v_devclass.&lt;/P&gt;&lt;P&gt;&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;&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 = 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;&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;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu&lt;/P&gt;&lt;P&gt;                              AND  tcode EQ p_tcode.&lt;/P&gt;&lt;P&gt;&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;*---End of Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 30 Oct 2006 04:35:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-30T04:35:12Z</dc:date>
    <item>
      <title>User Exits for a Trans code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712095#M311424</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can any one help me out about how to find out the user exixts available for a particular T-code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly explain the step by step process.&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;Priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 04:30:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712095#M311424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T04:30:00Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits for a Trans code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712096#M311425</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;In order to find out the user exits for any tcode, &lt;/P&gt;&lt;P&gt;1. get the developement class of the tcode from SE93.&lt;/P&gt;&lt;P&gt;2. Now goto transaction SMOD and press F4,&lt;/P&gt;&lt;P&gt;3. give in the Deve class in the dev class and Press ENTER&lt;/P&gt;&lt;P&gt;this will show u the exits for any tcode.&lt;/P&gt;&lt;P&gt;or execute this report&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;http://www.erpgenie.com/sap/abap/code/abap26.htm&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;which gives the list of exits for a tcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;- Gopi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 04:32:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712096#M311425</guid>
      <dc:creator>gopi_narendra</dc:creator>
      <dc:date>2006-10-30T04:32:06Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits for a Trans code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712097#M311426</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  One easy way to find is to execute the transaction and then goto system-&amp;gt; status. There you will get the program name go to the program by using forward navigation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you click on search and then search for&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION or&lt;/P&gt;&lt;P&gt;CALL CUSTOMER-SUBSCREEN&lt;/P&gt;&lt;P&gt;or even &lt;STRONG&gt;exit&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will get the results there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 04:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712097#M311426</guid>
      <dc:creator>seshatalpasai_madala</dc:creator>
      <dc:date>2006-10-30T04:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits for a Trans code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712098#M311427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below code. Enter Transaction code and the output will be list of all the user exits associated with it.&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  ZUSEREXIT                                                   *&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; Finding the user-exits of a SAP transaction code                    *&lt;/P&gt;&lt;P&gt;*&amp;amp;                                                                     *&lt;/P&gt;&lt;P&gt;*&amp;amp; Enter the transaction code in which you are looking for the         *&lt;/P&gt;&lt;P&gt;*&amp;amp; user-exit and it will list you the list of user-exits in the        *&lt;/P&gt;&lt;P&gt;*&amp;amp; transaction code. Also a drill down is possible which will help you *&lt;/P&gt;&lt;P&gt;*&amp;amp; to branch to SMOD.                                                  *&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 zuserexit NO STANDARD PAGE HEADING.&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;&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;&lt;/P&gt;&lt;P&gt;  MOVE : tadir-devclass TO v_devclass.&lt;/P&gt;&lt;P&gt;&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;&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 = 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;&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;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM tstct WHERE sprsl EQ sy-langu&lt;/P&gt;&lt;P&gt;                              AND  tcode EQ p_tcode.&lt;/P&gt;&lt;P&gt;&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;*---End of Program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Vibha &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Please mark all the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 30 Oct 2006 04:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits-for-a-trans-code/m-p/1712098#M311427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-30T04:35:12Z</dc:date>
    </item>
  </channel>
</rss>

