<?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 EXIT NAME in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443452#M826969</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manpreet Kaur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find user exit for a particular transaction follow the following steps:&lt;/P&gt;&lt;P&gt;1.open the transaction u want to find the user exit&lt;/P&gt;&lt;P&gt;2.goto system status-&amp;gt;click on the application progarm name&lt;/P&gt;&lt;P&gt;3.you will be taken to the module pool program that runs behind the transaction.&lt;/P&gt;&lt;P&gt;4.goto find and enter the string USEREXIT.&lt;/P&gt;&lt;P&gt;5.you will get a list of user exits for the transactions.&lt;/P&gt;&lt;P&gt;6.select the appropriate user exit by reading the short description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually user exits are mostly implemented for the SD module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search for transactions VL01,02,03&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can find a number of user exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any queries regarding user exits mail me.Hope ur satisfied with my answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Surya Pydikondala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 11 Feb 2008 05:10:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-11T05:10:25Z</dc:date>
    <item>
      <title>USER EXIT NAME</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443449#M826966</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hiiiiii&lt;/P&gt;&lt;P&gt;pls tell me the procedure to find out the name of user exit related to particular t-code .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 09:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443449#M826966</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T09:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: USER EXIT NAME</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443450#M826967</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Code SE18 is used to Identify the BADI available.&lt;/P&gt;&lt;P&gt;Look for the string 'CL_EXITHANDLER' in the standard program. This is a class which has a method 'GET_INSTANCE' which is used to trigger BADI's from the Standard Program. The interface parameter for this static method 'EXIT_NAME' is used to pass the BADI to the method.&lt;/P&gt;&lt;P&gt;Open Standard Program and do a global search 'CL_EXITHANDLER'.&lt;/P&gt;&lt;P&gt;SE18 &amp;gt; give the BADI name found through above search.&lt;/P&gt;&lt;P&gt;CUSTOMER_ADD_DATA &amp;gt; which has a method SAVE_DATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;T.Code SE19 is used to Implement BADI.&lt;/P&gt;&lt;P&gt;SE19 &amp;gt; give the implementation name &amp;gt; Give the Definition name as CUSTOMER_ADD_DATA and the Short Text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Feb 2008 09:42:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443450#M826967</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-09T09:42:42Z</dc:date>
    </item>
    <item>
      <title>Re: USER EXIT NAME</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443451#M826968</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi manpreet,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;paste the below codein abap editor and execute it and then provide the tcode&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 10 Feb 2008 07:31:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443451#M826968</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-10T07:31:59Z</dc:date>
    </item>
    <item>
      <title>Re: USER EXIT NAME</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443452#M826969</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manpreet Kaur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find user exit for a particular transaction follow the following steps:&lt;/P&gt;&lt;P&gt;1.open the transaction u want to find the user exit&lt;/P&gt;&lt;P&gt;2.goto system status-&amp;gt;click on the application progarm name&lt;/P&gt;&lt;P&gt;3.you will be taken to the module pool program that runs behind the transaction.&lt;/P&gt;&lt;P&gt;4.goto find and enter the string USEREXIT.&lt;/P&gt;&lt;P&gt;5.you will get a list of user exits for the transactions.&lt;/P&gt;&lt;P&gt;6.select the appropriate user exit by reading the short description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually user exits are mostly implemented for the SD module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;search for transactions VL01,02,03&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can find a number of user exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any queries regarding user exits mail me.Hope ur satisfied with my answer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Surya Pydikondala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 11 Feb 2008 05:10:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-name/m-p/3443452#M826969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-11T05:10:25Z</dc:date>
    </item>
  </channel>
</rss>

