<?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: Purchase order user Exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212287#M133855</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt;According to my observation,&lt;/P&gt;&lt;P&gt;The User exits are provided for custom fields created on screen exit at header and item level, Quantity field is on standard screen. it has its own processors. custom sub screen can not control the process on standard screens. even if we try to assign data to standard fields at runtime, I found the value is lost in the execution and the chages doesn't reflect on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Mar 2006 13:32:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-24T13:32:42Z</dc:date>
    <item>
      <title>Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212276#M133844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a case where I am modifying the quantity on a purchase order line item in Me22 or me22n.If this PO is tied to a nomination, I dont want the order quantity to be changed. Suppose I have Order quantity of 200 KG on item 10 and if item 10 is tied to nomination and if i try to change it to say 150 kg, I want my user exit to change it back to 200 KG when i click on save. So, I put my logic in an include file in EXIT_SAPMM06E_013 . Basically, I am trying to copy YEKPO-MENGE back to XEKPO-MENGE. But this doesn't seem to work. My quantity is still saved with 150 KG when i desire to have it unchanged as 200 KG. Here is the code below. Am i using the right user exit and the right Communication structure ? I am not sure if XEKPO and YEKPO are the ones I should look for. I even tried XEKET and YEKET. Did not work .Any help to solve this issue is greatly appreciated!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;*----------------------------------------------------------------------
*
*   INCLUDE ZSWI_NOMIT_PO_VALIDATION
*
*----------------------------------------------------------------------
   DATA: i_wa_xekpo  TYPE  uekpo,
         i_wa_yekpo  TYPE  uekpo,
         i_oijnomi TYPE  oijnomi.
 
   DATA: i_wa_yeket  TYPE ueket,
         i_wa_xeket  TYPE eket,
         i_eket      TYPE eket OCCURS 0 .
 
   DATA :i_tabix TYPE sytabix.
 
   CONSTANTS: c_char_i VALUE 'I',
              c_char_e VALUE 'E',
              c_char_f VALUE 'F',
              c_char_p VALUE 'P',
              c_char_v VALUE 'V',
              c_bulk_order(2) VALUE 'ZB',
              c_po_change(4)   VALUE 'ME22',
              c_pon_change(5)  VALUE 'ME22N'.
 
   IF i_ekko-bstyp = c_char_f     AND    " Purchase orders
      i_ekko-bsart = c_bulk_order AND    " Bulk orders
      sy-batch IS INITIAL         AND    " In foreground
      ( sy-tcode   = c_po_change   OR    " PO Change
        sy-tcode   = c_pon_change   ) .   " Enjoy PO Change
 
     
     CLEAR: i_wa_msg .
     REFRESH: i_message .
 
     LOOP AT xekpo INTO i_wa_xekpo .
 
       i_tabix = sy-tabix.
 
       READ TABLE yekpo
            INTO i_wa_yekpo
            WITH KEY ebeln = i_wa_xekpo-ebeln
                     ebelp = i_wa_xekpo-ebelp .
 
       IF sy-subrc EQ 0 .
 
         CLEAR: i_oijnomi .
         SELECT SINGLE * FROM oijnomi
           INTO i_oijnomi
          WHERE docnr  = i_wa_xekpo-ebeln
            AND docitm = i_wa_xekpo-ebelp
            AND docind = c_char_p .
 
         IF sy-subrc EQ 0. " TIED TO A NOMINATION
 
           IF i_wa_xekpo-menge NE i_wa_yekpo-menge .
 
             xekpo-menge = i_wa_yekpo-menge.
 
             MODIFY xekpo FROM xekpo INDEX i_tabix
             TRANSPORTING menge .
 
             READ TABLE yeket INTO i_wa_yeket
                        WITH KEY ebeln = i_wa_xekpo-ebeln
                                 ebelp = i_wa_xekpo-ebelp .
 
             xeket-menge =  i_wa_yeket-menge.
 
             MODIFY xeket FROM xeket INDEX i_tabix
             TRANSPORTING menge .
 
            
           ELSEIF i_wa_xekpo-werks NE i_wa_yekpo-werks .
 
             MODIFY xekpo FROM i_wa_yekpo INDEX i_tabix
             TRANSPORTING werks.
 
            
           ENDIF .
 
         ENDIF .
 
       ENDIF .
 
     ENDLOOP .
 
    ENDIF .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 02:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212276#M133844</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T02:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212277#M133845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Try include program ZXM06U43. This is an include in User Exit EXIT_SAPMM06E_012. This gets triggered when you save a Purchase Order. Here you can modify PO Qty. You will have to populate PO Item details from EKPO and modify internal table which contains PO Items details (after user modification).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To use this exit, you can do like this:&lt;/P&gt;&lt;P&gt;1. Run transaction CMOD.&lt;/P&gt;&lt;P&gt;2. Enter a project name. Create your own name. Check with your company naming range for user exit name.&lt;/P&gt;&lt;P&gt;3. Click on enhancement assignment&lt;/P&gt;&lt;P&gt;4. Select MM06E005&lt;/P&gt;&lt;P&gt;5. Doubleclick on EXIT_SAPMM06E_012&lt;/P&gt;&lt;P&gt;6. Doubleclick on include ZXM06U43&lt;/P&gt;&lt;P&gt;7. Inside this include you can start doing your Abap. Check on the fields you want to compare. And then you can modify data accordingly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ashish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 02:29:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212277#M133845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T02:29:55Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212278#M133846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I will try that  Ashish. I have a quick question. Do i always have to create a project in CMOD ? Can I not open ZXM06U43 in se38 and add my include file with logic there ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shareen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 02:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212278#M133846</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T02:43:55Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212279#M133847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is any XEKPO and YEKPO structure avaiable in this user exit - EXIT_SAPMM06E_012 ? If yes, I will try to copy YEKPO-MENGE back to XEKPO-MENGE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 02:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212279#M133847</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T02:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212280#M133848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt;You have to crate a project in CMOD. So that you can activate the enhancements you have done to the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Wenceslaus.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 02:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212280#M133848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T02:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212281#M133849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried to use EXIT_SAPMM06E_012. It has a TEKPO internal table containing the new values. I replaced the Menge value here by the old value in EKPO-MENGE..But still the new value is saved &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;  Same thing happened in my exit above mentioned too. I was trying to copy the old value YEKPO-MENGE to XEKPO-MENGE, still the new one is getting saved , when i click on save.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 04:44:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212281#M133849</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T04:44:02Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212282#M133850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I edit the fields of internal table TEKPO with whatever values, I need. But when saving, the PO is not getting updated with the desired values. Is this TEKPO getting refreshed or does it lose its scope when it comes out of the user exit ? Same is the problem with EXIT_SAPMM06E_013 too. I have both the old values and new values in YEKPO and XEKPO. I try to copy some fields of YEKPO to XEKPO..But somehow, its not getting updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 12:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212282#M133850</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T12:41:46Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212283#M133851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt; In same EXIT_SAPMM06E_012, try to compare the old PO qty and changed PO qty if they are different then throw an error message. this stop the further processing of PO and will not allow user to save the changes.&lt;/P&gt;&lt;P&gt;then the original quantity will be retained.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:03:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212283#M133851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T13:03:35Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212284#M133852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Hegde,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checkout which is the correct exit among these to put your code and tryout.&lt;/P&gt;&lt;P&gt;                                                                                &amp;lt;b&amp;gt;Extension Name    Exit Name&lt;/P&gt;&lt;P&gt; Description&lt;/P&gt;&lt;P&gt; Include&amp;lt;/b&amp;gt;  &lt;/P&gt;&lt;P&gt;                &lt;/P&gt;&lt;P&gt;  MELAB001              EXIT_RM06ELAB_001       &lt;/P&gt;&lt;P&gt;Customer Enhancement: Generate Sched. Agreement Releases: Creation Profile &lt;/P&gt;&lt;P&gt;           &lt;/P&gt;&lt;P&gt;  ZXM06U26                                                                                &lt;/P&gt;&lt;P&gt;MEVME001              EXIT_SAPLEINR_001 &lt;/P&gt;&lt;P&gt;Calculation of Default GR Quantity and Over-/Underdelivery Tolerance       &lt;/P&gt;&lt;P&gt;                                                                    &lt;/P&gt;&lt;P&gt; ZXM06U28&lt;/P&gt;&lt;P&gt;                                                                                MM06E001              EXIT_SAPLEINM_001                       &lt;/P&gt;&lt;P&gt;Customer Enhancements for Control Record: Purchasing Document (Outbound)                                                                                &lt;/P&gt;&lt;P&gt;ZXM06U01&lt;/P&gt;&lt;P&gt;                       &lt;/P&gt;&lt;P&gt;  MM06E001              EXIT_SAPLEINM_002   &lt;/P&gt;&lt;P&gt;Customer Enhancements to Data Segments: Purchasing Document (Outbound)     &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;               &lt;/P&gt;&lt;P&gt;  ZXM06U02&lt;/P&gt;&lt;P&gt;                                                                                Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212284#M133852</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T13:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212285#M133853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; THis is what i am trying to avoid. I want the user not to change only the quantity field. All other changes he has made needs to be saved.So,I dont want to throw a hard error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SHK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:19:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212285#M133853</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T13:19:09Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212286#M133854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Rajadeskhar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; None of the User exits your mentioned below. Most of them sound like they are for EDI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I just want an user exit for Me22 or Me22n in 4.6 C which can alter certain fields like MENGE ( order quantity) during save, based on certain conditions,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shareen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:22:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212286#M133854</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-24T13:22:17Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212287#M133855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shareen,&lt;/P&gt;&lt;P&gt;According to my observation,&lt;/P&gt;&lt;P&gt;The User exits are provided for custom fields created on screen exit at header and item level, Quantity field is on standard screen. it has its own processors. custom sub screen can not control the process on standard screens. even if we try to assign data to standard fields at runtime, I found the value is lost in the execution and the chages doesn't reflect on screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Rahul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:32:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212287#M133855</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T13:32:42Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212288#M133856</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;These exits are in &amp;lt;b&amp;gt;ECC 5.0&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this program to know all userexits for a given transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/abap/abap-code-samples/userexits%20in%20a%20transaction.doc"&amp;gt;Userexits for a given transaction&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Mar 2006 13:58:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212288#M133856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-24T13:58:08Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212289#M133857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rahul,&lt;/P&gt;&lt;P&gt;I need to correct u. The Exit says Customer fields, not custom field &lt;span class="lia-unicode-emoji" title=":face_with_tongue:"&gt;😛&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Shareen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Mar 2006 01:37:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212289#M133857</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-25T01:37:32Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212290#M133858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I know about that program to find user exits given a Tcode. I know all the available user exits for me22 and me22n. I just dont know why the changed i make to XEKPO, or TEKPO or XEKET are not getting reflected ? is any other process over writing it ? I tried to use field symbols so that i can retain its scope outside my include program. Doesnt help . Distress. SOS &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 25 Mar 2006 01:41:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212290#M133858</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-25T01:41:09Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212291#M133859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried Ashish. Did not work..I have access for both old and new values . But when i copy the old value to new values, it loses it scope after couple of exits.&lt;/P&gt;&lt;P&gt;The i thought EXIT_SAPMM06E_017 might be the best one to use. Even that did not work.&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;Shareen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 26 Mar 2006 03:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212291#M133859</guid>
      <dc:creator>former_member125661</dc:creator>
      <dc:date>2006-03-26T03:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212292#M133860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Shareen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am facing the same problem too. I have check the standard SAP code and found out that, whether you make changes to the data in the userexit for the EKKO, or EKPO, or EKET it doesn't reflect in the actual PO. Mainly all the PO userexits are there to show a custom error. The data which you can modify are only the customer (or custom) fields. I had to modify the delivery date for my requirement. What i did was modified the standard code by getting the object key? there is no other go, even checked with SAP.&lt;/P&gt;&lt;P&gt;Let me know if you need some help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Naga&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 31 Mar 2006 17:00:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212292#M133860</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-31T17:00:02Z</dc:date>
    </item>
    <item>
      <title>Re: Purchase order user Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212293#M133861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We succeed in solving partially the problem of modifyng the PO quantity (menge) using the SMOD exit MDR10001. &lt;/P&gt;&lt;P&gt;In this case, the FM EXIT_SAPLMDR1_004 can be used to trigger a modification in CH_S_RESULTS-menge e CH_S_RESULTS-lmenge. This modification is copied back in the PO item.&lt;/P&gt;&lt;P&gt;The only problem is that if the PO item is created with quantity zero, this exit is not alled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know your feed-back&lt;/P&gt;&lt;P&gt;Ugo Poddine&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 11 Apr 2006 15:10:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/purchase-order-user-exit/m-p/1212293#M133861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-11T15:10:36Z</dc:date>
    </item>
  </channel>
</rss>

