<?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: enhancements in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374570#M1236269</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1..----&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;The steps to find the User Exit for any Tcode is as given below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Find the development class for the TCode..u can find it by executing the Tcode ..then go to System on Menu Bar and click on Status.. a pop up will open up double click on the TCode ..u will get the development class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Now run the Transaction SMOD ..on the menu bar select Uitilies..then click on find and then type the development class in the specified input field of development class. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;3. Execute (F8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find all the User Exit for the TCode.&lt;/P&gt;&lt;P&gt;2....----&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aslo you can find the user-exits by pass the &lt;DEL&gt;package name&lt;/DEL&gt; of the t-code&lt;/P&gt;&lt;P&gt;--&amp;gt; to the table MODSAP in se16&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3..----&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;through report to find the user-exit for an transaction ot T-Code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;  Enter the transaction code that you want to search through in order
*&amp;amp;  to find which Standard SAP User Exits exists.
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Tables
*&amp;amp;---------------------------------------------------------------------*
 
TABLES : tstc,     "SAP Transaction Codes
         tadir,    "Directory of Repository Objects
         modsapt,  "SAP Enhancements - Short Texts
         modact,   "Modifications
         trdir,    "System table TRDIR
         tfdir,    "Function Module
         enlfdir,  "Additional Attributes for Function Modules
         tstct.    "Transaction Code Texts
 
*&amp;amp;---------------------------------------------------------------------*
* Variables
*&amp;amp;---------------------------------------------------------------------*
 

DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
DATA : field1(30).
DATA : v_devclass LIKE tadir-devclass.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Selection Screen Parameters
*&amp;amp;---------------------------------------------------------------------*
SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP.
PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN END OF BLOCK a01.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Start of main program
*&amp;amp;---------------------------------------------------------------------*
 
START-OF-SELECTION.
 
* Validate Transaction Code
  SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
 
* Find Repository Objects for transaction code
  IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
       WHERE pgmid    = 'R3TR'
         AND object   = 'PROG'
         AND obj_name = tstc-pgmna.
 
    MOVE : tadir-devclass TO v_devclass.


    IF sy-subrc NE 0.
      SELECT SINGLE * FROM trdir
         WHERE name = tstc-pgmna.
 
      IF trdir-subc EQ 'F'.
 
        SELECT SINGLE * FROM tfdir
          WHERE pname = tstc-pgmna.
 
        SELECT SINGLE * FROM enlfdir
          WHERE funcname = tfdir-funcname.
 
        SELECT SINGLE * FROM tadir
          WHERE pgmid    = 'R3TR'
            AND object   = 'FUGR'
            AND obj_name = enlfdir-area.
 
        MOVE : tadir-devclass TO v_devclass.
      ENDIF.
    ENDIF.
 
* Find SAP Modifactions
    SELECT * FROM tadir
      INTO TABLE jtab
     WHERE pgmid    = 'R3TR'
        AND object   = 'SMOD'
        AND devclass = v_devclass.
 
    SELECT SINGLE * FROM tstct
      WHERE sprsl EQ sy-langu
        AND tcode EQ p_tcode.
 
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
      WRITE:/(95) sy-uline.
      FORMAT COLOR COL_HEADING INTENSIFIED ON.
      WRITE:/1 sy-vline,
      2 'Exit Name',
      21 sy-vline ,
      22 'Description',
      95 sy-vline.
      WRITE:/(95) sy-uline.
 
      LOOP AT jtab.
        SELECT SINGLE * FROM modsapt
        WHERE sprsl = sy-langu AND
        name = jtab-obj_name.
        FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
        WRITE:/1 sy-vline,
        2 jtab-obj_name HOTSPOT ON,
        21 sy-vline ,
        22 modsapt-modtext,
        95 sy-vline.
      ENDLOOP.
 
      WRITE:/(95) sy-uline.
      DESCRIBE TABLE jtab.
      SKIP.
      FORMAT COLOR COL_TOTAL INTENSIFIED ON.
      WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'No User Exit exists'.
    ENDIF.
  ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
  ENDIF.
 
* Take the user to SMOD for the Exit that was selected.
AT LINE-SELECTION.
  GET CURSOR FIELD field1.
  CHECK field1(4) EQ 'JTAB'.
  SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
  CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 08 Apr 2009 13:00:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-08T13:00:04Z</dc:date>
    <item>
      <title>enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374569#M1236268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in tcode va01  to link with  tcode cs02    possible all userexits and  corresponding enhancement name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 12:53:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374569#M1236268</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T12:53:24Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374570#M1236269</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1..----&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;The steps to find the User Exit for any Tcode is as given below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Find the development class for the TCode..u can find it by executing the Tcode ..then go to System on Menu Bar and click on Status.. a pop up will open up double click on the TCode ..u will get the development class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Now run the Transaction SMOD ..on the menu bar select Uitilies..then click on find and then type the development class in the specified input field of development class. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;3. Execute (F8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find all the User Exit for the TCode.&lt;/P&gt;&lt;P&gt;2....----&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aslo you can find the user-exits by pass the &lt;DEL&gt;package name&lt;/DEL&gt; of the t-code&lt;/P&gt;&lt;P&gt;--&amp;gt; to the table MODSAP in se16&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3..----&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;through report to find the user-exit for an transaction ot T-Code&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;  Enter the transaction code that you want to search through in order
*&amp;amp;  to find which Standard SAP User Exits exists.
*&amp;amp;
*&amp;amp;---------------------------------------------------------------------*
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Tables
*&amp;amp;---------------------------------------------------------------------*
 
TABLES : tstc,     "SAP Transaction Codes
         tadir,    "Directory of Repository Objects
         modsapt,  "SAP Enhancements - Short Texts
         modact,   "Modifications
         trdir,    "System table TRDIR
         tfdir,    "Function Module
         enlfdir,  "Additional Attributes for Function Modules
         tstct.    "Transaction Code Texts
 
*&amp;amp;---------------------------------------------------------------------*
* Variables
*&amp;amp;---------------------------------------------------------------------*
 

DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
DATA : field1(30).
DATA : v_devclass LIKE tadir-devclass.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Selection Screen Parameters
*&amp;amp;---------------------------------------------------------------------*
SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP.
PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN END OF BLOCK a01.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Start of main program
*&amp;amp;---------------------------------------------------------------------*
 
START-OF-SELECTION.
 
* Validate Transaction Code
  SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
 
* Find Repository Objects for transaction code
  IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
       WHERE pgmid    = 'R3TR'
         AND object   = 'PROG'
         AND obj_name = tstc-pgmna.
 
    MOVE : tadir-devclass TO v_devclass.


    IF sy-subrc NE 0.
      SELECT SINGLE * FROM trdir
         WHERE name = tstc-pgmna.
 
      IF trdir-subc EQ 'F'.
 
        SELECT SINGLE * FROM tfdir
          WHERE pname = tstc-pgmna.
 
        SELECT SINGLE * FROM enlfdir
          WHERE funcname = tfdir-funcname.
 
        SELECT SINGLE * FROM tadir
          WHERE pgmid    = 'R3TR'
            AND object   = 'FUGR'
            AND obj_name = enlfdir-area.
 
        MOVE : tadir-devclass TO v_devclass.
      ENDIF.
    ENDIF.
 
* Find SAP Modifactions
    SELECT * FROM tadir
      INTO TABLE jtab
     WHERE pgmid    = 'R3TR'
        AND object   = 'SMOD'
        AND devclass = v_devclass.
 
    SELECT SINGLE * FROM tstct
      WHERE sprsl EQ sy-langu
        AND tcode EQ p_tcode.
 
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
      WRITE:/(95) sy-uline.
      FORMAT COLOR COL_HEADING INTENSIFIED ON.
      WRITE:/1 sy-vline,
      2 'Exit Name',
      21 sy-vline ,
      22 'Description',
      95 sy-vline.
      WRITE:/(95) sy-uline.
 
      LOOP AT jtab.
        SELECT SINGLE * FROM modsapt
        WHERE sprsl = sy-langu AND
        name = jtab-obj_name.
        FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
        WRITE:/1 sy-vline,
        2 jtab-obj_name HOTSPOT ON,
        21 sy-vline ,
        22 modsapt-modtext,
        95 sy-vline.
      ENDLOOP.
 
      WRITE:/(95) sy-uline.
      DESCRIBE TABLE jtab.
      SKIP.
      FORMAT COLOR COL_TOTAL INTENSIFIED ON.
      WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'No User Exit exists'.
    ENDIF.
  ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
  ENDIF.
 
* Take the user to SMOD for the Exit that was selected.
AT LINE-SELECTION.
  GET CURSOR FIELD field1.
  CHECK field1(4) EQ 'JTAB'.
  SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
  CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 13:00:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374570#M1236269</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T13:00:04Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374571#M1236270</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Uday,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1..----&lt;/P&gt;&lt;HR originaltext="-------------------------------" /&gt;&lt;P&gt;The steps to find the User Exit for any Tcode is as given below..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Find the development class for the TCode..u can find it by executing the Tcode ..then go to System on Menu Bar and click on Status.. a pop up will open up double click on the TCode ..u will get the development class.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Now run the Transaction SMOD ..on the menu bar select Uitilies..then click on find and then type the development class in the specified input field of development class. &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;3. Execute (F8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will find all the User Exit for the TCode.&lt;/P&gt;&lt;P&gt;2....----&lt;/P&gt;&lt;HR originaltext="-------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;aslo you can find the user-exits by pass the &lt;DEL&gt;package name&lt;/DEL&gt; of the t-code&lt;/P&gt;&lt;P&gt;--&amp;gt; to the table MODSAP in se16&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3..----&lt;/P&gt;&lt;HR originaltext="-----------------------" /&gt;&lt;P&gt;through report to find the user-exit for an transaction ot T-Code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


TABLES : tstc,     "SAP Transaction Codes
         tadir,    "Directory of Repository Objects
         modsapt,  "SAP Enhancements - Short Texts
         modact,   "Modifications
         trdir,    "System table TRDIR
         tfdir,    "Function Module
         enlfdir,  "Additional Attributes for Function Modules
         tstct.    "Transaction Code Texts
 
DATA : jtab LIKE tadir OCCURS 0 WITH HEADER LINE.
DATA : field1(30).
DATA : v_devclass LIKE tadir-devclass.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Selection Screen Parameters
*&amp;amp;---------------------------------------------------------------------*
SELECTION-SCREEN BEGIN OF BLOCK a01 WITH FRAME TITLE text-001.
SELECTION-SCREEN SKIP.
PARAMETERS : p_tcode LIKE tstc-tcode OBLIGATORY.
SELECTION-SCREEN SKIP.
SELECTION-SCREEN END OF BLOCK a01.
 
*&amp;amp;---------------------------------------------------------------------*
*&amp;amp; Start of main program
*&amp;amp;---------------------------------------------------------------------*
 
START-OF-SELECTION.
 
* Validate Transaction Code
  SELECT SINGLE * FROM tstc
    WHERE tcode EQ p_tcode.
 
* Find Repository Objects for transaction code
  IF sy-subrc EQ 0.
    SELECT SINGLE * FROM tadir
       WHERE pgmid    = 'R3TR'
         AND object   = 'PROG'
         AND obj_name = tstc-pgmna.
 
    MOVE : tadir-devclass TO v_devclass.


    IF sy-subrc NE 0.
      SELECT SINGLE * FROM trdir
         WHERE name = tstc-pgmna.
 
      IF trdir-subc EQ 'F'.
 
        SELECT SINGLE * FROM tfdir
          WHERE pname = tstc-pgmna.
 
        SELECT SINGLE * FROM enlfdir
          WHERE funcname = tfdir-funcname.
 
        SELECT SINGLE * FROM tadir
          WHERE pgmid    = 'R3TR'
            AND object   = 'FUGR'
            AND obj_name = enlfdir-area.
 
        MOVE : tadir-devclass TO v_devclass.
      ENDIF.
    ENDIF.
 
* Find SAP Modifactions
    SELECT * FROM tadir
      INTO TABLE jtab
     WHERE pgmid    = 'R3TR'
        AND object   = 'SMOD'
        AND devclass = v_devclass.
 
    SELECT SINGLE * FROM tstct
      WHERE sprsl EQ sy-langu
        AND tcode EQ p_tcode.
 
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) p_tcode,
    45(50) tstct-ttext.
    SKIP.
    IF NOT jtab[] IS INITIAL.
      WRITE:/(95) sy-uline.
      FORMAT COLOR COL_HEADING INTENSIFIED ON.
      WRITE:/1 sy-vline,
      2 'Exit Name',
      21 sy-vline ,
      22 'Description',
      95 sy-vline.
      WRITE:/(95) sy-uline.
 
      LOOP AT jtab.
        SELECT SINGLE * FROM modsapt
        WHERE sprsl = sy-langu AND
        name = jtab-obj_name.
        FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
        WRITE:/1 sy-vline,
        2 jtab-obj_name HOTSPOT ON,
        21 sy-vline ,
        22 modsapt-modtext,
        95 sy-vline.
      ENDLOOP.
 
      WRITE:/(95) sy-uline.
      DESCRIBE TABLE jtab.
      SKIP.
      FORMAT COLOR COL_TOTAL INTENSIFIED ON.
      WRITE:/ 'No of Exits:' , sy-tfill.
    ELSE.
      FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
      WRITE:/(95) 'No User Exit exists'.
    ENDIF.
  ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(95) 'Transaction Code Does Not Exist'.
  ENDIF.
 
* Take the user to SMOD for the Exit that was selected.
AT LINE-SELECTION.
  GET CURSOR FIELD field1.
  CHECK field1(4) EQ 'JTAB'.
  SET PARAMETER ID 'MON' FIELD sy-lisel+1(10).
  CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Prabhudas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 13:01:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374571#M1236270</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T13:01:05Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374572#M1236271</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pls read the forum before posting the Q.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 13:43:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374572#M1236271</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T13:43:24Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374573#M1236272</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This report's result have problem.When I use it to find exit for MD70, I got exit for mm02 not for MD70.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 14:06:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374573#M1236272</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T14:06:09Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374574#M1236273</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This report's result have problem.When I use it to find exit for MD70, I got exit for mm02 not for MD70.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Apr 2009 14:08:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374574#M1236273</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-08T14:08:14Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374575#M1236274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai all,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my business logic is &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first select &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1 )   select the item.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2 )  select the item  type  'tan'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3)  select the structure 'a'  ( single level bom ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;after that go  tcode  va02.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;give the material.&lt;/P&gt;&lt;P&gt;here  three types of boms are there ,  so then  select any single bom  is active manually.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go to tcode  va01.&lt;/P&gt;&lt;P&gt;give po number.&lt;/P&gt;&lt;P&gt;give material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once enter , the system picks the values from tcode  va02  bom values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my requirement is  once all things are  completed,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tcode va02   bom value tab deactive automatically system taken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this cycle which user-exits  is suitable.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please tell me.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 05:07:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374575#M1236274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T05:07:57Z</dc:date>
    </item>
    <item>
      <title>Re: enhancements</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374576#M1236275</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 09 Apr 2009 05:51:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/enhancements/m-p/5374576#M1236275</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-09T05:51:54Z</dc:date>
    </item>
  </channel>
</rss>

