<?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 required the transaction code for the user exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658209#M1667228</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abap Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        i want to find out the *&lt;STRONG&gt;sap transaction code for which the user exit belongs to&lt;/STRONG&gt;  from the below code i am getting the enhancement name and the type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know the transaction code for exit &lt;STRONG&gt;EXIT_SAPLMEKO_002&lt;/STRONG&gt; and  &lt;STRONG&gt;EXIT_SAPLFYTX_USER_001&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of it_modsap occurs 0,
        name   type modsap-name,
        typ    type modsap-typ,
        member type modsap-member,
      end of it_modsap.
type-pools:slis.
data:wa_layout type slis_layout_alv.
data:it_sort   type slis_t_sortinfo_alv.
data:wa_sort   like line of it_sort.
parameters:p_exit type modsap-member.
select * from modsap into table it_modsap where member = p_exit.
read table it_modsap index 1.
select * from modsap into table it_modsap where name = it_modsap-name.
wa_layout-colwidth_optimize = 'X'.
wa_sort-fieldname = 'NAME'.
wa_sort-tabname   = 'IT_MODSAP'.
wa_sort-up        = 'X'.
append wa_sort to it_sort.
clear  wa_sort.
call function 'REUSE_ALV_GRID_DISPLAY'
  exporting
    i_callback_program = sy-repid
    i_structure_name   = 'MODSAP'
    is_layout          = wa_layout
    it_sort            = it_sort
  tables
    t_outtab           = it_modsap.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 01 Mar 2012 11:31:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-03-01T11:31:56Z</dc:date>
    <item>
      <title>required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658209#M1667228</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abap Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        i want to find out the *&lt;STRONG&gt;sap transaction code for which the user exit belongs to&lt;/STRONG&gt;  from the below code i am getting the enhancement name and the type. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want to know the transaction code for exit &lt;STRONG&gt;EXIT_SAPLMEKO_002&lt;/STRONG&gt; and  &lt;STRONG&gt;EXIT_SAPLFYTX_USER_001&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: begin of it_modsap occurs 0,
        name   type modsap-name,
        typ    type modsap-typ,
        member type modsap-member,
      end of it_modsap.
type-pools:slis.
data:wa_layout type slis_layout_alv.
data:it_sort   type slis_t_sortinfo_alv.
data:wa_sort   like line of it_sort.
parameters:p_exit type modsap-member.
select * from modsap into table it_modsap where member = p_exit.
read table it_modsap index 1.
select * from modsap into table it_modsap where name = it_modsap-name.
wa_layout-colwidth_optimize = 'X'.
wa_sort-fieldname = 'NAME'.
wa_sort-tabname   = 'IT_MODSAP'.
wa_sort-up        = 'X'.
append wa_sort to it_sort.
clear  wa_sort.
call function 'REUSE_ALV_GRID_DISPLAY'
  exporting
    i_callback_program = sy-repid
    i_structure_name   = 'MODSAP'
    is_layout          = wa_layout
    it_sort            = it_sort
  tables
    t_outtab           = it_modsap.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 11:31:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658209#M1667228</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-01T11:31:56Z</dc:date>
    </item>
    <item>
      <title>Re: required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658210#M1667229</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Put  a &lt;STRONG&gt;BREAKPOINT&lt;/STRONG&gt; inside the user-exit and execute any t code. If it opens the debugger, type &lt;STRONG&gt;SY-TCODE&lt;/STRONG&gt; in the right screen and you will get the transaction which is calling this user-exit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 11:36:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658210#M1667229</guid>
      <dc:creator>davis_raja</dc:creator>
      <dc:date>2012-03-01T11:36:08Z</dc:date>
    </item>
    <item>
      <title>Re: required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658211#M1667230</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;The user exit EXIT_SAPLFYTX_USER_001 is trigered for the below transactions and also postings via IDOC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'ME21' 'ME21N' 'ME22' 'ME22N' 'ME23'  'ME23N' 'ME31L'  'ME31'   'ME32L' 'ME32'  'ME33L'  'ME33' 'ME38'   'ME39'  'VL31N'  'VL32N' 'VL33N'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is basically used for tax calculation purposes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user exit EXIT_SAPLMEKO_002 is trigerred for multiple transactions of purchansing scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also use user exit for your business scenario.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Br&lt;/P&gt;&lt;P&gt;Vijay V&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 14:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658211#M1667230</guid>
      <dc:creator>vijaymanikandan</dc:creator>
      <dc:date>2012-03-01T14:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658212#M1667231</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abap gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i want to know how to find the sap transaction code for any exit for example : &lt;STRONG&gt;EXIT_SAPLMEQR_001&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: srinu_varahalu on Mar 1, 2012 8:21 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 01 Mar 2012 14:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658212#M1667231</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-01T14:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658213#M1667232</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                       how did you find the transaction code for a particular exit. please let me know also.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2012 07:10:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658213#M1667232</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-02T07:10:29Z</dc:date>
    </item>
    <item>
      <title>Re: required the transaction code for the user exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658214#M1667233</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi the naming convention for user exit is :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_&amp;lt;program name&amp;gt;&amp;lt;3 digit suffix&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have the program name. Goto se80, give program name, and see attached transactions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2012 07:35:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/required-the-transaction-code-for-the-user-exit/m-p/8658214#M1667233</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-03-02T07:35:11Z</dc:date>
    </item>
  </channel>
</rss>

