<?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 Exits in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871167#M673639</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karthik, do u have any assignments on user exit, if u have can u send me pls...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 05 Oct 2007 06:11:56 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-05T06:11:56Z</dc:date>
    <item>
      <title>User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871165#M673637</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can any one give assignments on User Exits, where i can work on IDES...thanks in advance, points for sure if any one gives me assingments.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Vijaya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:08:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871165#M673637</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:08:51Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871166#M673638</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Vijaya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Display the program where you are searching for and exit and search for CALL CUSTOMER-EXIT &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you know the Exit name, go to transaction CMOD. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Choose menu Utillities-&amp;gt;SAP Enhancements. Enter the exit name and press enter. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will now come to a screen that shows the function module exits for the exit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(or)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use the below code to find User exit for a transaction.paste in se38 and give your tcode name.You will get your user exit name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give the TCODE as input.&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;&lt;/P&gt;&lt;P&gt;Reward if helpful,&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871166#M673638</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-10-05T06:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871167#M673639</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Karthik, do u have any assignments on user exit, if u have can u send me pls...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:11:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871167#M673639</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871168#M673640</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Find below , some of frequently used user-exits :&lt;/P&gt;&lt;P&gt;From include MV45AFZZ&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_SAVE_DOCUMENT_PREPARE This userexit can be used for changes or checks, before a sales document is saved &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_DELETE_DOCUMENT This userexit can be used to delete data in additional tables when a sales document is deleted. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_FIELD_MODIFICATION This userexit can be used to modify the attributes of screen fields&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;USEREXIT_MOVE_FIELD_TO_VBAK This userexit can be used to move some fields into the sales dokument header workaerea VBAK&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_MOVE_FIELD_TO_VBAP This userexit can be used to move some fields into the sales dokument item workaerea VBAP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_MOVE_FIELD_TO_VBEP This userexit can be used to move some fields into the sales dokument schedule line workaerea VBEP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_MOVE_FIELD_TO_VBKD This userexit can be used to move some fields into the sales dokument business data workaerea VBKD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_NUMBER_RANGE This userexit can be used to determine the numberranges for the internal document number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_PRICING_PREPARE_TKOMK This userexit can be used to move additional fields into the communication table which is used for pricing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_PRICING_PREPARE_TKOMP This userexit can be used to move additional fields into the communication table which is used for pricing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_READ_DOCUMENT This userexit can be used to read data in additional tables when the program reads a sales document.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USEREXIT_SAVE_DOCUMENT This userexit can be used to save data in additional tables when a document is saved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From Include RV60AFZZ&lt;/P&gt;&lt;P&gt;USEREXIT_NUMBER_RANGE This userexit can be used to determine the numberranges for the internal document number&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example :&lt;/P&gt;&lt;P&gt;Suppose , Instead of using standard number range, Client want plantwise different series of invoice numbers, further, we want to differentiate b/w LST Sale or CST Sale by using different number ranges for both sales.&lt;/P&gt;&lt;P&gt;Then, we can use USEREXIT_NUMBER_RANGE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exits in Transaction ME21N &lt;/P&gt;&lt;P&gt;Transaction Code - ME21N Purchase Order&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------------------------" /&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;Exit Name&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Description&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------------------------" /&gt;&lt;TABLE&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MRFLB001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Control Items for Contract Release Order&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;AMPL0001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;User subscreen for additional data on AMPL&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LMEDR001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Enhancements to print program&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LMELA002&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Adopt batch no. from shipping notification when posting a GR&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LMELA010&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Inbound shipping notification: Transfer item data from IDOC&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LMEQR001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;User exit for source determination&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LMEXF001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Conditions in Purchasing Documents Without Invoice Receipt&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;LWSUS001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Individual customer source determination in Retail&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06B0001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Role determination for purchase requisition release&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06B0002&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Changes to comm. structure for purchase requisition release&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06B0003&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Number range and document number&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06B0004&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Number range and document number&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06B0005&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Changes to comm. structure for overall release of requisn.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06E0004&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Changes to communication structure for release purch. doc.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;M06E0005&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Role determination for release of purchasing documents&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;ME590001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Grouping of requsitions for PO split in ME59&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MEETA001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Define schedule line type (backlog, immed. req., preview)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MEFLD004&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Determine earliest delivery date f. check w. GR (only PO)&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MELAB001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Gen. forecast delivery schedules: Transfer schedule implem.&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MEVME001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;WE default quantity calc. and over/ underdelivery tolerance&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;User exits for EDI inbound and outbound purchasing documents&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E003&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Number range and document number&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E004&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Control import data screens in purchase order&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E005&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Customer fields in purchasing document&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E007&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Change document for requisitions upon conversion into PO&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E008&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Monitoring of contr. target value in case of release orders&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E009&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Relevant texts for "Texts exist" indicator&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MM06E010&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Field selection for vendor address&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMAL0001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;ALE source list distribution: Outbound processing&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMAL0002&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;ALE source list distribution: Inbound processing&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMAL0003&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;ALE purcasing info record distribution: Outbound processing&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMAL0004&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;ALE purchasing info record distribution: Inbound processing&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMDA0001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;Default delivery addresses&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD&gt;&lt;P&gt;MMFAB001&lt;/P&gt;&lt;/TD&gt;&lt;TD&gt;&lt;P&gt;User exit for generation of release order&lt;/P&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding a Field Exit &lt;/P&gt;&lt;P&gt;To add a field exit first find the data element that is linked to the screen field- the screen number and program &lt;/P&gt;&lt;P&gt;Run program RSMODPRF. You will need to create two function modules one FIELD_EXIT_MEPO_VENDOR and &lt;/P&gt;&lt;P&gt;FIELD_EXIT_MEPO_VENDOR_A &lt;/P&gt;&lt;P&gt;FIELD_EXIT_MEPO_VENDOR should have code simply of input = ouput. &lt;/P&gt;&lt;P&gt;FIELD_EXIT_MEPO_VENDOR_A should have the code for whatever the functionality is required &lt;/P&gt;&lt;P&gt;Go back to RSMODPRF and run the program without parameters. Use the push buttons to assign the screen, 'A' and program. Use the drop down to activate the field list. &lt;/P&gt;&lt;P&gt;This should now work, but there is no way of debugging. For further information look at OSS 29377 &lt;/P&gt;&lt;P&gt;program zzdirlist. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;for AIX this method also works. &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: BEGIN OF TABL OCCURS 0, &lt;/P&gt;&lt;P&gt;TEXT(80) TYPE C, &lt;/P&gt;&lt;P&gt;END OF TABL. &lt;/P&gt;&lt;P&gt;DATA: COMMAND(256) TYPE C. &lt;/P&gt;&lt;P&gt;COMMAND = 'ls'. &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RFC_REMOTE_PIPE' DESTINATION 'SERVER_EXEC' &lt;/P&gt;&lt;P&gt;EXPORTING COMMAND = COMMAND &lt;/P&gt;&lt;P&gt;READ = 'X' &lt;/P&gt;&lt;P&gt;TABLES PIPEDATA = TABL. &lt;/P&gt;&lt;P&gt;LOOP AT TABL. &lt;/P&gt;&lt;P&gt;WRITE:/ TABL-text. &lt;/P&gt;&lt;P&gt;ENDLOOP. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this information helps you.&lt;/P&gt;&lt;P&gt;Reward Points if it helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:12:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871168#M673640</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2007-10-05T06:12:00Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871169#M673641</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assignment add user Exit for MM01&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction Code - MM01                     Create Material &amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Exit Name           Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; MGA00001            Material Master (Industry): Checks and Enhancements&lt;/P&gt;&lt;P&gt; MGA00002            Material Master (Industry): Number Assignment&lt;/P&gt;&lt;P&gt; MGA00003            Material Master (Industry and Retail): Number Display&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No of Exits:          3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;USER EXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/abap26.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/code/abap26.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction" target="test_blank"&gt;http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.easymarketplace.de/userexit.php" target="test_blank"&gt;http://www.easymarketplace.de/userexit.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/userexit.pdfUser-Exit" target="test_blank"&gt;http://www.sappoint.com/abap/userexit.pdfUser-Exit&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/ab038.htm" target="test_blank"&gt;http://www.sap-img.com/ab038.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_46c/helpdata/en/64/72369adc56d11195100060b03c6b76/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html" target="test_blank"&gt;http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci982756,00.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Exits are basically the hooks whcih SAP has provided to add your own code. There are two types of Exits:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Customer exits: Implemented as Function Modules within z includes. Anybody can change it and no access key is required.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. User Exit: Implemented as subroutines within includes (any include except y or z includes). You need access for the specific include and then you can any subroutine (user exit) within that Include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BADIs are the enhanced version of user exits where the same logic is implemented via classes and object (OOP)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Enchancement point is the latest once introduces with ECC6.0 . Not very sure about that but you can change it without any access key.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please go through the following link which will help you understand the exits in a much better way:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/bf/ec07a25db911d295ae0000e82de14a/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-the-difference-between-smod-and-cmod.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.niraj.tripod.com/id21.html" target="test_blank"&gt;http://sap.niraj.tripod.com/id21.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c8/1975cc43b111d1896f0000e8322d00/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/ab038.htm" target="test_blank"&gt;http://www.sap-img.com/ab038.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User Exits.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------------------------------------------------" /&gt;&lt;P&gt;&lt;A href="http://www.erpgenie.com/sap/abap/code/abap26.htm" target="test_blank"&gt;http://www.erpgenie.com/sap/abap/code/abap26.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapgenie.com/abap/code/abap26.htm" target="test_blank"&gt;http://www.sapgenie.com/abap/code/abap26.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/what-is-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/what-is-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction" target="test_blank"&gt;http://wiki.ittoolbox.com/index.php/HOWTO:Implement_a_screen_exit_to_a_standard_SAP_transaction&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.easymarketplace.de/userexit.php" target="test_blank"&gt;http://www.easymarketplace.de/userexit.php&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/userexit.pdfUser-Exit" target="test_blank"&gt;http://www.sappoint.com/abap/userexit.pdfUser-Exit&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;customer exits&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/f1a7e790-0201-0010-0a8d-f08a4662562d&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Menu Exit.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/spmp.pdf" target="test_blank"&gt;http://www.sappoint.com/abap/spmp.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sappoint.com/abap/userexit.pdf" target="test_blank"&gt;http://www.sappoint.com/abap/userexit.pdf&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/enhance/mod_sapmenu.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/enhance/enhancehome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/enhance/enhancehome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rewards if useful.........&lt;/P&gt;&lt;P&gt;Minal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:13:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871169#M673641</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:13:26Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871170#M673642</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vijaya&lt;/P&gt;&lt;P&gt;try this&lt;/P&gt;&lt;P&gt;add vendor grading field to XK01&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Nagesh.Paruchuri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:14:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871170#M673642</guid>
      <dc:creator>paruchuri_nagesh</dc:creator>
      <dc:date>2007-10-05T06:14:04Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871171#M673643</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;you can try for a simple assignment like in MM01 nobody will be allowed to create material no starting from A001*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and only a particuular user is allowe to create that kind of material material &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or only a particular user can create material of type FERT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;while changing a material there should be a popup message saying changing an existing material is not recommended&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these are a few use rexits examples on mm01 and mm02&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;vivekanand&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:14:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871171#M673643</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:14:44Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871172#M673644</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;Table enhancement  - Append structure (2 Char fields ) for Table SFLIGHT**&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To trigger all the customer exit (Function , Menu and Screen Exit) for  Program SAPBC425_FLIGHT**&lt;/P&gt;&lt;P&gt;Create a project using following Components&lt;/P&gt;&lt;P&gt;SBC**E01(Function Exit)&lt;/P&gt;&lt;P&gt;SBC**E02(Menu Exit)&lt;/P&gt;&lt;P&gt;SBC**E03 (Screen Exit)&lt;/P&gt;&lt;P&gt;(** =&amp;gt; ranges from 00 to 18)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:16:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871172#M673644</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-05T06:16:06Z</dc:date>
    </item>
    <item>
      <title>Re: User Exits</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871173#M673645</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;for user exits you need acess key and user exits are only for sd module if you have acess key and want to work on user axits goto SPRO transaction and click on SAP reference IMG&lt;DEL&gt;-&amp;gt;sales and distribution&lt;/DEL&gt;-&amp;gt;system modifications---&amp;gt;User exits. there you find a lot of user exits .work on that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;if helpful reward some points.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 05 Oct 2007 06:39:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exits/m-p/2871173#M673645</guid>
      <dc:creator>suredarreddy_pulimamidi</dc:creator>
      <dc:date>2007-10-05T06:39:16Z</dc:date>
    </item>
  </channel>
</rss>

