<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125673#M446217</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code you have given is sexy Buddy.Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Apr 2007 10:25:14 GMT</pubDate>
    <dc:creator>kiran_k8</dc:creator>
    <dc:date>2007-04-02T10:25:14Z</dc:date>
    <item>
      <title>user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125666#M446210</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; Do we have any other ways to find the user exits except SMOD&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:08:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125666#M446210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:08:18Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125667#M446211</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;just run this program and in the parameters give the tcode for which you want the user exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZPS_EXIT.&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;regards,&lt;/P&gt;&lt;P&gt;pankaj singh&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="5" type="ul"&gt;&lt;P&gt;please donot forget to give points&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:14:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125667#M446211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:14:18Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125668#M446212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can also search for the term "CUSTOMER-FUNCTION" in the main program of the transaction.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:17:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125668#M446212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:17:06Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125669#M446213</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;take the prog name from tcode and go to se38 give the prog name and in menu utilities----&amp;gt;find in source code i the pop up give call customer it will show you the code like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ALL CUSTOMER-FUNCTION '001'           &lt;/P&gt;&lt;P&gt;    EXPORTING                         &lt;/P&gt;&lt;P&gt;         I_RM61B       = P_AM61B      &lt;/P&gt;&lt;P&gt;         I_MT61D       = P_MT61D      &lt;/P&gt;&lt;P&gt;         I_SESTA        = P_SESTA     &lt;/P&gt;&lt;P&gt;         I_MKAL        = P_MKAL       &lt;/P&gt;&lt;P&gt;         I_PLAF        = P_PLAF       &lt;/P&gt;&lt;P&gt;         I_WE          = P_WE         &lt;/P&gt;&lt;P&gt;         I_PART_CANC   = P_PART_CANC  &lt;/P&gt;&lt;P&gt;         I_MODE        = P_MODE       &lt;/P&gt;&lt;P&gt;         I_REPTP       = P_REPTP      &lt;/P&gt;&lt;P&gt;         I_NO_DIALOG   = P_NO_DIALOG  &lt;/P&gt;&lt;P&gt;         I_PZPSX_TABIX = P_PZPSX_TABIX&lt;/P&gt;&lt;P&gt;         I_T437S       = P_T437S      &lt;/P&gt;&lt;P&gt;         I_TPRRU       = P_TPRRU      &lt;/P&gt;&lt;P&gt;         I_PKOSA       = P_PKOSA      &lt;/P&gt;&lt;P&gt;    IMPORTING                         &lt;/P&gt;&lt;P&gt;         E_RM61B       = P_AM61B      &lt;/P&gt;&lt;P&gt;    TABLES                            &lt;/P&gt;&lt;P&gt;         I_PLAFZ       = P_PLAFZ      &lt;/P&gt;&lt;P&gt;         I_PZPSX       = P_PZPSX      &lt;/P&gt;&lt;P&gt;    EXCEPTIONS                        &lt;/P&gt;&lt;P&gt;         OTHERS   = 1.                &lt;/P&gt;&lt;P&gt;dbl click on that it will go to abap editor dbl click on 001 it will show you the fn module name copy that ..&lt;/P&gt;&lt;P&gt;come to smod press F4 choose information system give the fn mod name in component name it will show you the enhancement ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;shiba dutta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:19:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125669#M446213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:19:21Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125670#M446214</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sarath,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SMOD is one way.The other way is &lt;/P&gt;&lt;P&gt;go to the TCode.&lt;/P&gt;&lt;P&gt;get the program name (for ex-sapm45a or whatever)&lt;/P&gt;&lt;P&gt;open the corresponding program in se80.&lt;/P&gt;&lt;P&gt;pick the search button from Menu bar.&lt;/P&gt;&lt;P&gt;and search for _exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is what you  are seeking then don't forget to reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:19:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125670#M446214</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-02T10:19:59Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125671#M446215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know the Exit name, go to transaction CMOD. &lt;/P&gt;&lt;P&gt;Choose menu Utillities-&amp;gt;SAP Enhancements. &lt;/P&gt;&lt;P&gt;Enter the exit name and press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will now come to a screen that shows the function module exits for the exit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:21:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125671#M446215</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:21:25Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125672#M446216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sarath&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are ways to get the userexits. You can go to SPRO and go to the module&lt;/P&gt;&lt;P&gt;where you need the exit (SD or MM). There you will find a icon for Enhancements or Modifications. From the list you can select one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The other way is go to the transaction for which you need the exit. Get the main program of the transaction. Get the package name. Seach in SMOD with the package name. You will get a list of exits. From the list you can select one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or else go to SE80. There will be a a drop down as Enhancements. There also you will get the exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hopw this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Britto&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125672#M446216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-02T10:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: user Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125673#M446217</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pankaj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The code you have given is sexy Buddy.Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;K.Kiran&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Apr 2007 10:25:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2125673#M446217</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2007-04-02T10:25:14Z</dc:date>
    </item>
  </channel>
</rss>

