<?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: Which user exit? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889302#M372607</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Narendran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How did you find that UE? They are not listed in the list provided by the ABAP ZUSEREXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked all the UE but no one seems to delete the Copa Prof Segment when a material has a specific Item Category&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 08 Feb 2007 17:36:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-02-08T17:36:04Z</dc:date>
    <item>
      <title>Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889294#M372599</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to know the name of an user exit that is being executed in VF01. Anyone have idea where can I look for?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:28:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889294#M372599</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:28:40Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889295#M372600</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;Check these includes for user exits for billing..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RV60AFZC&lt;/P&gt;&lt;P&gt;RV60AFZA&lt;/P&gt;&lt;P&gt;RV60AFZZ&lt;/P&gt;&lt;P&gt;RV60AFZB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889295#M372600</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889296#M372601</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;here is the program to find the list of userexits for a tcode&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report zuserexit no standard page heading.&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;*---End of Program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;othere wise here is the list of userexits in 4.6&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.planetsap.com/Userexit_List.htm" target="test_blank"&gt;http://www.planetsap.com/Userexit_List.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;~~Guduri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:33:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889296#M372601</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:33:02Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889297#M372602</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are this the only user exits? I believe the code is not there. How did you identify them?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:41:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889297#M372602</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:41:44Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889298#M372603</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;Please let me know your requirement...I will check if there is any 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;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:43:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889298#M372603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:43:03Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889299#M372604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I believe there is a user exit which is clearing the Profitability Segment for a particular Item Category. I need to identify that code and change it, but I can't find it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 22:52:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889299#M372604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T22:52:39Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889300#M372605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try any of these: &lt;/P&gt;&lt;P&gt;SDVFX010&lt;/P&gt;&lt;P&gt;SDVFX011&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;These contain a structure: VBRPVB which has the PAOBJNR	Profitability segment number (CO-PA) contained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Subramanian&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 23:11:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889300#M372605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T23:11:45Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889301#M372606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Scott,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is a list of User exits used in transaction VF01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exit Name           Description                                                                                &lt;/P&gt;&lt;P&gt;SDVFX001            User exit header line in delivery to accounting                          &lt;/P&gt;&lt;P&gt;SDVFX002            User exit for A/R line (transfer to accounting)                          &lt;/P&gt;&lt;P&gt;SDVFX003            User exit: Cash clearing (transfer to accounting)                        &lt;/P&gt;&lt;P&gt;SDVFX004            User exit: G/L line (transfer to accounting)                             &lt;/P&gt;&lt;P&gt;SDVFX005            User exit: Reserves (transfer to accounting)                             &lt;/P&gt;&lt;P&gt;SDVFX006            User exit: Tax line (transfer to accounting)                             &lt;/P&gt;&lt;P&gt;SDVFX007            User exit: Billing plan during transfer to Accounting                    &lt;/P&gt;&lt;P&gt;SDVFX008            User exit: Processing of transfer structures SD-FI                       &lt;/P&gt;&lt;P&gt;SDVFX009            Billing doc. processing KIDONO (payment reference number)                &lt;/P&gt;&lt;P&gt;SDVFX010            User exit item table for the customer lines                              &lt;/P&gt;&lt;P&gt;SDVFX011            Userexit for the komkcv- and kompcv-structures                           &lt;/P&gt;&lt;P&gt;V05I0001            User exits for billing index                                             &lt;/P&gt;&lt;P&gt;V05N0001            User Exits for Printing Billing Docs. using POR Procedure                &lt;/P&gt;&lt;P&gt;V60A0001            Customer functions in the billing document                               &lt;/P&gt;&lt;P&gt;V60P0001            Data provision for additional fields for display in lists                &lt;/P&gt;&lt;P&gt;V61A0001            Customer enhancement: Pricing                                            &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Gilberto Li&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Feb 2007 23:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889301#M372606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-01T23:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: Which user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889302#M372607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Narendran&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How did you find that UE? They are not listed in the list provided by the ABAP ZUSEREXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TIA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked all the UE but no one seems to delete the Copa Prof Segment when a material has a specific Item Category&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 08 Feb 2007 17:36:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/which-user-exit/m-p/1889302#M372607</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-02-08T17:36:04Z</dc:date>
    </item>
  </channel>
</rss>

