<?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 activation problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432328#M1246371</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manohar and thanks,&lt;/P&gt;&lt;P&gt;I'm quite sure there's something wrong in the identification of the program and the screen. &lt;/P&gt;&lt;P&gt;But I just followed instructions I found in many pages and in this forum:&lt;/P&gt;&lt;P&gt;- open the transaction (in my case, ME51n or ME52N or ME53N);&lt;/P&gt;&lt;P&gt;- find the field on which I want to create a field exit, then F1 on it -&amp;gt; Technical information; a popup info box contains then the information I need (three sections in particular: screen data, gui data, field data).&lt;/P&gt;&lt;P&gt;What's wrong in this sequence? I'm quite confident that identifying the program/screen in Me52N for the field EPSTP is a standard procedure, in the sense that probably the result is the same for every 46C system (EPSTP is a standard field, and ME5?N is a standard transaction). Can anyone check and give me some addictional info, so that I can understand where's my fault? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Apr 2009 16:48:14 GMT</pubDate>
    <dc:creator>matteo_montalto</dc:creator>
    <dc:date>2009-04-01T16:48:14Z</dc:date>
    <item>
      <title>Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432324#M1246367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;for my purpose I'd like to create a field exit (SAP_APPL 46C) to lock/ulock for modification a standard field in the grid shown in me51n/me52n/me53n tx. I did as follows:&lt;/P&gt;&lt;P&gt;1 - run the report RSMODPRF and created a field exit for the field EPSTP (FIELD_EXIT_EPSTP);&lt;/P&gt;&lt;P&gt;2 - wrote the (dummy) code that follows, just to verify if it works:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;FUNCTION FIELD_EXIT_EPSTP.
*"----------------------------------------------------------------------
*"*"Local interface:
*"  IMPORTING
*"     REFERENCE(INPUT) TYPE  MEREQ3211GRID
*"  EXPORTING
*"     REFERENCE(OUTPUT) TYPE  MEREQ3211GRID
*"----------------------------------------------------------------------

loop at screen.
  if screen-name = 'EPSTP'. "make it non-editable
    screen-input = 0.
    screen-active = 1.
  endif.
  modify screen.
endloop.
ENDFUNCTION.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;3 - save &amp;amp; activate.&lt;/P&gt;&lt;P&gt;4 - run the report RSMODPRF (without parameters), and attribute this new Field Exit to Program RM_MEREQ_GUI  and screen 0014 (as I've seen pressing F1 in me52n on the field in order to get some info about program/screen).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So far, so good ... but now in the field exit list i get the following entry:&lt;/P&gt;&lt;P&gt;EPSTP | INACTIVE | RM_MEREQ_GUI | 0014 &lt;/P&gt;&lt;P&gt;and can't get to turn it into the ACTIVE status. If I try to activate from the list the entry, a message tells that the Field Exit is still active... but that list view isn't updated anyway, and shows that the FE is not active. Obviously, I can't see any effects in the transaction in which it should trigger.&lt;/P&gt;&lt;P&gt;Any help is really appreciated, thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 13:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432324#M1246367</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-01T13:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432325#M1246368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Another option is to check if field exit parameter is activated in system parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check in RZ10 and makesure "abap/fieldexit" is set to YES&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 14:42:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432325#M1246368</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2009-04-01T14:42:51Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432326#M1246369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manohar, and thanks for your help.... Unfortunately I cannot verify anything from tx RZ10 because the development user I'm using doesn't have permissions to use it (I mean, my user isn't sap_all here). Is there any alternative way to check for that setting? I'm anyway quite confident that system's parameters are fine, because i can see running RSMODPRF without any parameters that many field exits are active and used...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 14:52:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432326#M1246369</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-01T14:52:40Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432327#M1246370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the program you selected may not be the right one - I cannot simulate as I have no access system with this parameter on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through this link&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.saptechies.com/faqs-field-exits-cmod/" target="test_blank"&gt;http://www.saptechies.com/faqs-field-exits-cmod/&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it tells you about few similar problems you have.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 15:05:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432327#M1246370</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2009-04-01T15:05:39Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432328#M1246371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Manohar and thanks,&lt;/P&gt;&lt;P&gt;I'm quite sure there's something wrong in the identification of the program and the screen. &lt;/P&gt;&lt;P&gt;But I just followed instructions I found in many pages and in this forum:&lt;/P&gt;&lt;P&gt;- open the transaction (in my case, ME51n or ME52N or ME53N);&lt;/P&gt;&lt;P&gt;- find the field on which I want to create a field exit, then F1 on it -&amp;gt; Technical information; a popup info box contains then the information I need (three sections in particular: screen data, gui data, field data).&lt;/P&gt;&lt;P&gt;What's wrong in this sequence? I'm quite confident that identifying the program/screen in Me52N for the field EPSTP is a standard procedure, in the sense that probably the result is the same for every 46C system (EPSTP is a standard field, and ME5?N is a standard transaction). Can anyone check and give me some addictional info, so that I can understand where's my fault? Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Apr 2009 16:48:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432328#M1246371</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-01T16:48:14Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432329#M1246372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you let me know what function group you have used while creating 'FIELD_EXIT_EPSTP' function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this [link|http://www.sap-img.com/abap/field-exits-smod-cmod-questions-and-answers.htm]:&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 04:21:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432329#M1246372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T04:21:10Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432330#M1246373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya, and thanks for your help.&lt;/P&gt;&lt;P&gt;I used the report RSMODPRF, simply specifying the field on which I'd like to build a field exit (EPSTP).&lt;/P&gt;&lt;P&gt;I think anyway, like Manohar said, that the problem is in the pair program/screen specified... even tho I tried to make the FE global and... still doesn't seem to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 05:52:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432330#M1246373</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-02T05:52:52Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432331#M1246374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you execute the program RSMODPRF it will ask for data element &amp;amp; Number of field exit, if you give the data element as 'EPSTP' and execute then it will take you to the 'Function builder initial screen'. If you try to create function module then it will ask for the function group. Just i want to know which function group you have used there.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 05:58:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432331#M1246374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T05:58:13Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432332#M1246375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ops sorry Satya, I misunderstood... I used a custom function group, called "ZSRM_TE", which also contains some FM made my dev. team. Could this be a problem?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EDIT: I've also seen in SE51 that compiling the input mask with RM_MEREQ_GUI as program and 0014 as dynpro number and pressing on the "show" button, an error message appears: "Screen RM_MEREQ_GUI 0014 does not exist". Guess if the problem is related to the program and screen number I used...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matteo Montalto on Apr 2, 2009 9:49 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 07:29:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432332#M1246375</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-02T07:29:43Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432333#M1246376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As per my knowledge, yes, u hv to use a custom function group, but, its better to use a new custom function group, which is exclusive for this purpose.&lt;/P&gt;&lt;P&gt;Pls. check, am may be wrong.&lt;/P&gt;&lt;P&gt;thanq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Apr 2009 14:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432333#M1246376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-02T14:22:24Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432334#M1246377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;so far I understood that the system I'm working has support to field exits active (that's good). I finally succeed in activating the field exit but it seems that the execution flow doesn't pass thru that FE. &lt;/P&gt;&lt;P&gt;Probably there's something wrong with my Program/Screen no. setting, but since this is a standard field in a standard transaction I hope that someone could give me an hint/feedback.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The transaction is: ME51N / ME2N / ME53N.&lt;/P&gt;&lt;P&gt;The field is: EPSTP (Item category in purchasing document).&lt;/P&gt;&lt;P&gt;What's in your opinion the couple Program/screen number for a field exit built upon that field in a standard ME5xN transaction? I tried RM_MEREQ_GUI (0014), SAPLMEREQ, SAPLMEGUI (1211) but without success. &lt;/P&gt;&lt;P&gt;I inserted in the code a MESSAGE clause in order to see if the exec flow pass thru the field exit... can't see it, neither the message nor the effects of the FE &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Matteo Montalto on Apr 6, 2009 11:37 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Apr 2009 09:22:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432334#M1246377</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-04-06T09:22:53Z</dc:date>
    </item>
    <item>
      <title>Re: Field exit activation problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432335#M1246378</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all, &lt;/P&gt;&lt;P&gt;ir's passed over a month since my last request in this thread, unfortunately I have to say this question is still not solved &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are some questions that could help me identifying what's going wrong:&lt;/P&gt;&lt;P&gt;- in ME51N/ME52N/ME53N, pressing F1 on the field I'd like to build a fieldexit on, I can clearly see that field's name reported is EPSTP. BUT... In the EBAN table, that field is called PSTYP... so, what field should I consider to build a specific field exit?&lt;/P&gt;&lt;P&gt;- if I activate a field exit GLOBALLY, it should mean that in every dynpro in which that field is present, the code in that field exit should be executed. True that? I tried to do so for both of the above names (creating two field exits) but I can't see the effects. &lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;- Since the transaction IS a standard Enjoy one, can anybody provide me some details about field and screen name, screen number, program name? I guess something is wrong on my system, or maybe there are some customs I can't see that inhibit that checks from being executed.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 May 2009 11:00:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/field-exit-activation-problem/m-p/5432335#M1246378</guid>
      <dc:creator>matteo_montalto</dc:creator>
      <dc:date>2009-05-28T11:00:58Z</dc:date>
    </item>
  </channel>
</rss>

