<?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/2744237#M637838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Field exits are an obsolete way of performing validation / change to a single field.  In systems from 4.6 onwards, you should look for an alternative method to achieve the result you want using user exits, BADI's, validations, BTE's, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While SAP still lets you create / change field exits as others have commented, you should find that your Basis team have disabled field exits globally through a system parameter.  If they have not - look at removing any existing field exits and talk to them about doing so - there is a performance hit in having them turned on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest you post more details of your actual requirement to see if contributers to this forum can suggest a better and more supportable method of implementing your change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 06 Sep 2007 12:25:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-06T12:25:13Z</dc:date>
    <item>
      <title>Field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744233#M637834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friendz,&lt;/P&gt;&lt;P&gt;Could anyone help me in finding what is field exit &amp;amp; how to implement it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 10:26:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744233#M637834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T10:26:59Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744234#M637835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find field exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto tcode CMOD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the uppper left text box (where we type cmod)&lt;/P&gt;&lt;P&gt;again type PRFB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; all list of field exits, (which have been created so far),&lt;/P&gt;&lt;P&gt;will come.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 10:30:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744234#M637835</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T10:30:15Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744235#M637836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Prasad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To find the field exits please follow the steps mentioned above&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To create a field Exit pls follow the steps&lt;/P&gt;&lt;P&gt;1)For field exits in R/3 4.6C, execute transaction CMOD. Then type PRFB in the command field. &lt;/P&gt;&lt;P&gt;2)on the top menu...click on Field exit-&amp;gt; create -&amp;gt;enter the name of data element&lt;/P&gt;&lt;P&gt;3)enter the data element required for screen field to be mandatory and Execute&lt;/P&gt;&lt;P&gt;4)another screen comes with a function module name FIELD_EXIT_name of data element&lt;/P&gt;&lt;P&gt;5)Click create and save it to corresponding function group&lt;/P&gt;&lt;P&gt;6)you will get a function module with &lt;/P&gt;&lt;P&gt;import parameter as : INPUT&lt;/P&gt;&lt;P&gt;export parameter as : OUTPUT&lt;/P&gt;&lt;P&gt;7) in the source code write the code :&lt;/P&gt;&lt;P&gt;if input is initial.&lt;/P&gt;&lt;P&gt;message 'SALES FIELD MADATORY' type 'E'.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;8)again to activate execute transaction CMOD. Then type PRFB in the command field. on the top menu...click on Field exit-&amp;gt;Activate&lt;/P&gt;&lt;P&gt;now wherever data element is used the mandatory check will come but you need it only for your program ,so in the same screen click on Assign prog./screen tab and write the name of the program and screen number where you want the particular check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I believe field exit are not possible if structure field is on the screen...please do the above and check..you can also run the report RSMODPRF to create a field exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope the suggestions proved useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Pls reward all helpful answers and revert if you still have some doubts on the same&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Byju&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 10:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744235#M637836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T10:36:37Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744236#M637837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for your answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will reply u very soon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 11:44:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744236#M637837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T11:44: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/2744237#M637838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Field exits are an obsolete way of performing validation / change to a single field.  In systems from 4.6 onwards, you should look for an alternative method to achieve the result you want using user exits, BADI's, validations, BTE's, etc.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;While SAP still lets you create / change field exits as others have commented, you should find that your Basis team have disabled field exits globally through a system parameter.  If they have not - look at removing any existing field exits and talk to them about doing so - there is a performance hit in having them turned on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest you post more details of your actual requirement to see if contributers to this forum can suggest a better and more supportable method of implementing your change.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Andrew&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 06 Sep 2007 12:25:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744237#M637838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-06T12:25:13Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744238#M637839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Mar 2011 15:26:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2744238#M637839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-03-10T15:26:02Z</dc:date>
    </item>
  </channel>
</rss>

