<?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/2222470#M477324</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 11 May 2007 10:06:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-11T10:06:16Z</dc:date>
    <item>
      <title>Field exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222469#M477323</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;Does all the data element have the field exit?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i tried created for data element EBELN in ME23n which was triggered successfully, but it is not triggered for BVTYP for the same program different screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help us with the possible solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Guru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222469#M477323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T10:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222470#M477324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:06:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222470#M477324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T10:06: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/2222471#M477325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess you have to create the field exit for dataelement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u can try these to create field exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TCODE    CMOD --&amp;gt;PRFB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;use program&lt;/P&gt;&lt;P&gt;RSMODPRF&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222471#M477325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T10:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit ?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222472#M477326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Guru,&lt;/P&gt;&lt;P&gt;The problem might be that after creating  the field exit u must have associated it with a program and a screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats why it is getting triggered only when the screen, with which it has been associated, arrives.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to assign this globally thatis everywhere thriughout SAP, then dont assign it to any Program and screen.&lt;/P&gt;&lt;P&gt;else u need to assign each program and screen with which u want the Field-exit to function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 11 May 2007 10:12:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit/m-p/2222472#M477326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-11T10:12:14Z</dc:date>
    </item>
  </channel>
</rss>

