<?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/3118040#M740460</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 04 Dec 2007 11:52:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-04T11:52:16Z</dc:date>
    <item>
      <title>Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118036#M740456</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;What is Field Exit and how can i create one?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:46:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118036#M740456</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T11:46:55Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118037#M740457</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;read that&lt;/P&gt;&lt;P&gt;BR, Jacek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118037#M740457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T11:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118038#M740458</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;ABAP DICTIONARY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Field Exits: &lt;/P&gt;&lt;P&gt;	Field exits take you from a screen field with a data element reference to a function module. Field exits can be either global or local.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field exit function modules adhere to the following naming convention:&lt;/P&gt;&lt;P&gt;prefix:	FIELD_EXIT_&lt;/P&gt;&lt;P&gt;name:	&amp;lt;data element name&amp;gt;_&lt;/P&gt;&lt;P&gt;suffix (optional):	0 to 9, A to Z &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global field exits are not limited to a particular screen. If a global field exit's data element is used on multiple screens, you will branch to a function module from all of these screens once the exit has been activated. Here you can, for example, edit the contents, force a new entry to be made by outputting an error message, or prohibit certain users from proceeding further.&lt;/P&gt;&lt;P&gt;Local field exits are valid for one screen only. If you assign a screen from a specific program to the data element, then you will only branch to a function module from this screen once the exit has been activated. To be able to allow different functionality on different screens referring to the same data element, you can assign exit numbers to data elements. Each exit number refers to a different function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;prefix:	FIELD_EXIT_&lt;/P&gt;&lt;P&gt;name:	&amp;lt;data element name&amp;gt;_&lt;/P&gt;&lt;P&gt;suffix (optional):	0 to 9, A to Z &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118038#M740458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T11:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118039#M740459</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;Check the below link&lt;/P&gt;&lt;P&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;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:51:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118039#M740459</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-12-04T11:51:07Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118040#M740460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&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;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118040#M740460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T11:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118041#M740461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check this link&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;/P&gt;&lt;P&gt;Execute Program RSMODPRF, Provide the data element of the field which you want field exit. It will give you the function module for field exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Satish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:52:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118041#M740461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-04T11:52:17Z</dc:date>
    </item>
    <item>
      <title>Re: Field Exit</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118042#M740462</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;A href="http://www.sapdevelopment.co.uk/enhance/fexits.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/enhance/fexits.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 04 Dec 2007 11:52:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/3118042#M740462</guid>
      <dc:creator>former_member188829</dc:creator>
      <dc:date>2007-12-04T11:52:24Z</dc:date>
    </item>
  </channel>
</rss>

