<?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: Field Exit in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536342#M575713</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;&lt;A href="http://www.erpgenie.com/abap/fieldexits.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/fieldexits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapab014.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapab014.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;V4.6c onwards no longer supports field exits!!! In any case here's how to activate them: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activation of the field exits and assignment of the dynpros is carried out using program RSMODPRF. For this purpose, the program must be started without parameters (input fields remain blank).  If required, new field exits can be created using program RSMODPRF (see below for documentation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Exits for Data Elements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;Maintenance transaction for creating and activating field exits&lt;/P&gt;&lt;P&gt;As part of the extension concept, SAP allows you to install a field exit for each screen field. Similar to the conversion exit, the system branches at the field exit at DCI (DATA COMMUNICATIONS INPUT) to a function module, if the field is an input field and a function code was triggered. The function module must adhere to the following naming convention:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prefix: FIELD_EXIT_&lt;/P&gt;&lt;P&gt;Infix: &amp;lt;Data element name&amp;gt;&lt;/P&gt;&lt;P&gt;Suffix: _0 to _9 (optional), _A to _Z&lt;/P&gt;&lt;P&gt;The interface is automatically generated during the creation of the function module, and has 2 parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import parameter: INPUT&lt;/P&gt;&lt;P&gt;Export parameter: OUTPUT&lt;/P&gt;&lt;P&gt;After a function code has been triggered the contents of the field are made available to the FB via the "INPUT" import parameter. You can edit this and, when changed, make it available to the ABAP/4 processor in "OUTPUT". The input field contents are usually passed on: you can simply write OUTPUT = INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If, e.g., you have activated the field exit for the data element 'PROGRAM', then the fields of all the screens, which refer to the data element 'PROGRAM', branch to the function module FIELD_EXIT_PROGRAM. This includes the field 'Program' of the initial screen SAPMS38M0100 in transaction SE38, for example.&lt;/P&gt;&lt;P&gt;If you do not want the function module to be accessed from all screens, assign particular screens to the data element PROGRAM. By allocating an exit number, it is also possible to branch to other function modules with the corresponding suffix _0 ... _Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: You have assigned screen SAPMS38M0100 and exit number 5 to data element 'PROGRAM'. The corresponding field on SAPMS38M0100 branches to FIELD_EXIT_PROGRAMM_5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as you activate an exit, the corresponding screens are invalidated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Field exits are only taken into account during screen generation if the parameter abap/fieldexit = 'YES' is set in the system profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement&lt;/P&gt;&lt;P&gt;Set the profile parameter abap/fieldexit = 'YES' before system start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Limitations&lt;/P&gt;&lt;P&gt;The following ABAP statements are not allowed in the function modules of field exits:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK-POINT,&lt;/P&gt;&lt;P&gt;CALL SCREEN, CALL DIALOG, CALL TRANSACTION, SUBMIT,&lt;/P&gt;&lt;P&gt;COMMIT WORK, ROLLBACK WORK,&lt;/P&gt;&lt;P&gt;COMMUNICATION RECEIVE,&lt;/P&gt;&lt;P&gt;EXIT FROM STEP-LOOP,&lt;/P&gt;&lt;P&gt;MESSAGE I, MESSAGE W.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field exits cannot be edited with the debugger.&lt;/P&gt;&lt;P&gt;You should not use any external Performs in field exits. The ABAP processor shares the table work areas of externally called programs with those of the first caller. This could lead to errors at field exits that can hardly be analyzed, as field exits are sometimes slipped into the flow of the program at unforeseen events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions and answers on field exits&lt;/P&gt;&lt;P&gt;1. A field exit was created with the CMOD and activated, but it does not get executed when the screen is called.&lt;/P&gt;&lt;P&gt;Since the field exit is not executed until DCI, some action must occur in the screen (e.g. press Return, saving....).&lt;/P&gt;&lt;P&gt;Set the abap/fieldexit profile parameter to YES and start the system again.&lt;/P&gt;&lt;P&gt;After the FIELD_EXIT... function module has been activated and the field exit has been activated, the transaction in whose screen the field exit is to be executed must be terminated. The screen is not generated until it is called.&lt;/P&gt;&lt;P&gt;Do not work on different application servers, otherwise there may be a delay before the field exit becomes active.&lt;/P&gt;&lt;P&gt;The profile parameter must be set either on all application servers or on none.&lt;/P&gt;&lt;P&gt;If the field exit is to be active in certain screens only, then you should check whether you have selected the correct program and the correct screen number (Careful with SUBSCREENS &lt;IMG src=").
Use SE51, field list, to ensure that the screen field really does have a DDIC reference" /&gt; Do not rely on the F1 information for the field!&lt;/P&gt;&lt;P&gt;2. How does setting abap/fieldexit affect the performance?&lt;/P&gt;&lt;P&gt;If a screen is generated and the profile parameter is set, then the system checks in 2 tables (TDDIR, TDDIRS) to see whether a field exit has to be generated for the field. In practice the screen load after a Put is not generated until the screen is called. The user will not experience a noticeable delay, since screen generation is extremely fast.&lt;/P&gt;&lt;P&gt;3. Can the contents of other screen fields be read in a field exit?&lt;/P&gt;&lt;P&gt;In principle all fields can be copied to global variables in the TOP or the function group. However, since the order in which the field exits are called is not guaranteed, this possibility should not be used.&lt;/P&gt;&lt;P&gt;4. How does the field exit work in step-loop fields?&lt;/P&gt;&lt;P&gt;After data input to DCI the field exit will be called as many times as fields are visible on the step-loop. The SY-STEPL system variable is incremented each time. If a new value is assigned to be field, then it will be visible in the module between LOOP. ENDLOOP. This module will also be called as many times as there are visible step-loop lines.&lt;/P&gt;&lt;P&gt;5. Can field exits be debugged?&lt;/P&gt;&lt;P&gt;No. Field exits have to be tested in isolation in the development environment. To analyze problems that occur only in the screen environment, the relevant variables can be written to the file system using TRANSFER... and can be analyzed there.&lt;/P&gt;&lt;P&gt;6. What should one do if the field contents are not getting transported to ABAP/4?&lt;/P&gt;&lt;P&gt;Check whether you have assigned a value to the OUTPUT field.&lt;/P&gt;&lt;P&gt;7. When does the field exit get called in the case that there is a conversion exit attached to the data element?&lt;/P&gt;&lt;P&gt;The field exit will be called after the conversion exit. This means that the INPUT field contains the data in the same form as that in which the ABAP/4 program also gets them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Jul 2007 11:43:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-12T11:43:09Z</dc:date>
    <item>
      <title>Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536341#M575712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How to do Field Exit?&lt;/P&gt;&lt;P&gt;Explain in detail with example?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 11:40:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536341#M575712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T11:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536342#M575713</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;&lt;A href="http://www.erpgenie.com/abap/fieldexits.htm" target="test_blank"&gt;http://www.erpgenie.com/abap/fieldexits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapab014.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapab014.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;V4.6c onwards no longer supports field exits!!! In any case here's how to activate them: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activation of the field exits and assignment of the dynpros is carried out using program RSMODPRF. For this purpose, the program must be started without parameters (input fields remain blank).  If required, new field exits can be created using program RSMODPRF (see below for documentation).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field Exits for Data Elements&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;Maintenance transaction for creating and activating field exits&lt;/P&gt;&lt;P&gt;As part of the extension concept, SAP allows you to install a field exit for each screen field. Similar to the conversion exit, the system branches at the field exit at DCI (DATA COMMUNICATIONS INPUT) to a function module, if the field is an input field and a function code was triggered. The function module must adhere to the following naming convention:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prefix: FIELD_EXIT_&lt;/P&gt;&lt;P&gt;Infix: &amp;lt;Data element name&amp;gt;&lt;/P&gt;&lt;P&gt;Suffix: _0 to _9 (optional), _A to _Z&lt;/P&gt;&lt;P&gt;The interface is automatically generated during the creation of the function module, and has 2 parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import parameter: INPUT&lt;/P&gt;&lt;P&gt;Export parameter: OUTPUT&lt;/P&gt;&lt;P&gt;After a function code has been triggered the contents of the field are made available to the FB via the "INPUT" import parameter. You can edit this and, when changed, make it available to the ABAP/4 processor in "OUTPUT". The input field contents are usually passed on: you can simply write OUTPUT = INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If, e.g., you have activated the field exit for the data element 'PROGRAM', then the fields of all the screens, which refer to the data element 'PROGRAM', branch to the function module FIELD_EXIT_PROGRAM. This includes the field 'Program' of the initial screen SAPMS38M0100 in transaction SE38, for example.&lt;/P&gt;&lt;P&gt;If you do not want the function module to be accessed from all screens, assign particular screens to the data element PROGRAM. By allocating an exit number, it is also possible to branch to other function modules with the corresponding suffix _0 ... _Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example: You have assigned screen SAPMS38M0100 and exit number 5 to data element 'PROGRAM'. The corresponding field on SAPMS38M0100 branches to FIELD_EXIT_PROGRAMM_5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as you activate an exit, the corresponding screens are invalidated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: Field exits are only taken into account during screen generation if the parameter abap/fieldexit = 'YES' is set in the system profile.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Requirement&lt;/P&gt;&lt;P&gt;Set the profile parameter abap/fieldexit = 'YES' before system start.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Limitations&lt;/P&gt;&lt;P&gt;The following ABAP statements are not allowed in the function modules of field exits:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BREAK-POINT,&lt;/P&gt;&lt;P&gt;CALL SCREEN, CALL DIALOG, CALL TRANSACTION, SUBMIT,&lt;/P&gt;&lt;P&gt;COMMIT WORK, ROLLBACK WORK,&lt;/P&gt;&lt;P&gt;COMMUNICATION RECEIVE,&lt;/P&gt;&lt;P&gt;EXIT FROM STEP-LOOP,&lt;/P&gt;&lt;P&gt;MESSAGE I, MESSAGE W.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field exits cannot be edited with the debugger.&lt;/P&gt;&lt;P&gt;You should not use any external Performs in field exits. The ABAP processor shares the table work areas of externally called programs with those of the first caller. This could lead to errors at field exits that can hardly be analyzed, as field exits are sometimes slipped into the flow of the program at unforeseen events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Questions and answers on field exits&lt;/P&gt;&lt;P&gt;1. A field exit was created with the CMOD and activated, but it does not get executed when the screen is called.&lt;/P&gt;&lt;P&gt;Since the field exit is not executed until DCI, some action must occur in the screen (e.g. press Return, saving....).&lt;/P&gt;&lt;P&gt;Set the abap/fieldexit profile parameter to YES and start the system again.&lt;/P&gt;&lt;P&gt;After the FIELD_EXIT... function module has been activated and the field exit has been activated, the transaction in whose screen the field exit is to be executed must be terminated. The screen is not generated until it is called.&lt;/P&gt;&lt;P&gt;Do not work on different application servers, otherwise there may be a delay before the field exit becomes active.&lt;/P&gt;&lt;P&gt;The profile parameter must be set either on all application servers or on none.&lt;/P&gt;&lt;P&gt;If the field exit is to be active in certain screens only, then you should check whether you have selected the correct program and the correct screen number (Careful with SUBSCREENS &lt;IMG src=").
Use SE51, field list, to ensure that the screen field really does have a DDIC reference" /&gt; Do not rely on the F1 information for the field!&lt;/P&gt;&lt;P&gt;2. How does setting abap/fieldexit affect the performance?&lt;/P&gt;&lt;P&gt;If a screen is generated and the profile parameter is set, then the system checks in 2 tables (TDDIR, TDDIRS) to see whether a field exit has to be generated for the field. In practice the screen load after a Put is not generated until the screen is called. The user will not experience a noticeable delay, since screen generation is extremely fast.&lt;/P&gt;&lt;P&gt;3. Can the contents of other screen fields be read in a field exit?&lt;/P&gt;&lt;P&gt;In principle all fields can be copied to global variables in the TOP or the function group. However, since the order in which the field exits are called is not guaranteed, this possibility should not be used.&lt;/P&gt;&lt;P&gt;4. How does the field exit work in step-loop fields?&lt;/P&gt;&lt;P&gt;After data input to DCI the field exit will be called as many times as fields are visible on the step-loop. The SY-STEPL system variable is incremented each time. If a new value is assigned to be field, then it will be visible in the module between LOOP. ENDLOOP. This module will also be called as many times as there are visible step-loop lines.&lt;/P&gt;&lt;P&gt;5. Can field exits be debugged?&lt;/P&gt;&lt;P&gt;No. Field exits have to be tested in isolation in the development environment. To analyze problems that occur only in the screen environment, the relevant variables can be written to the file system using TRANSFER... and can be analyzed there.&lt;/P&gt;&lt;P&gt;6. What should one do if the field contents are not getting transported to ABAP/4?&lt;/P&gt;&lt;P&gt;Check whether you have assigned a value to the OUTPUT field.&lt;/P&gt;&lt;P&gt;7. When does the field exit get called in the case that there is a conversion exit attached to the data element?&lt;/P&gt;&lt;P&gt;The field exit will be called after the conversion exit. This means that the INPUT field contains the data in the same form as that in which the ABAP/4 program also gets them&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srilatha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 11:43:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536342#M575713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T11:43:09Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536343#M575714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  For this example I am using dta element 'EBELN' from table EKKO.                    &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;Step 1: 	Execute program &amp;#145;RSMODPRF&amp;#146;, entering the data element of the field&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 2:	Create function module when prompted, and add you code to the source section using the parameter 'INPUT&amp;#146; as the field value you are checking.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 3: 	Save and activate Function and execute transaction &amp;#145;CMOD&amp;#146;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 4: 	Choose option: Goto-&amp;gt; Text Enhancements-&amp;gt;Data elements-&amp;gt;New DE cust docu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 5: 	Enter data element&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 6: 	Save and activate &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 7: 	Execute program &amp;#145;RSMODPRF&amp;#146; again but this time leave data element field blank.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Step 8: 	Select the checkbox for the data element you have just created and choose option: Field exit-&amp;gt;Activate&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will now be active for all instances of this data element, but you can assign specific program and screen &lt;/P&gt;&lt;P&gt;combinations by pressing the &amp;#145;Assign prog./screen&amp;#146; button. You can also change the code you entered in the field &lt;/P&gt;&lt;P&gt;exit function module by pressing the &amp;#145;Edit FM&amp;#146; button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Maintenance transaction for creating and activating field exits&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As part of the extension concept, SAP allows you to install a field exit for each screen field. Similar to the conversion exit, the system branches at the field exit at DCI (DATA COMMUNICATIONS INPUT) to a function module, if the field is an input field and a function code was triggered. The function module must adhere to the following naming convention:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Prefix: FIELD_EXIT_&lt;/P&gt;&lt;P&gt;Infix: &amp;lt;Data element name&amp;gt;&lt;/P&gt;&lt;P&gt;Suffix: _0 to _9 (optional), _A to _Z&lt;/P&gt;&lt;P&gt;The interface is automatically generated during the creation of the function module, and has 2 parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Import parameter: INPUT&lt;/P&gt;&lt;P&gt;Export parameter: OUTPUT&lt;/P&gt;&lt;P&gt;After a function code has been triggered the contents of the field are made available to the FB via the "INPUT" import parameter. You can edit this and, when changed, make it available to the ABAP/4 processor in "OUTPUT". The input field contents are usually passed on: you can simply write OUTPUT = INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward pts if found usefull &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sathish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:25:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536343#M575714</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:25:31Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536344#M575715</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go that main program of the VA01 and do the Global search for FIELD_EXIT, then you come to know the field exits&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-------------------------------------------------" /&gt;&lt;P&gt;Field exits are for data elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can do validations on filed data elements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl.indicate on which field in VA01 transaction , you want to do validations.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two types of field exits 1. Global 2. Local &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pl.refer following links for further info.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sap.niraj.tripod.com/id21.html &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="3378949"&gt;&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="https://community.sap.com/www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------------" /&gt;&lt;P&gt;Goto CMOD transaction.In that enter prfb in the command field directly.you will get the list of field exist available and you find out the status and for which screen and tcode it is implemented.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if it is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Abhay.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Jul 2007 12:29:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2536344#M575715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-12T12:29:38Z</dc:date>
    </item>
  </channel>
</rss>

