<?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: input help for screen fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440340#M1551595</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;Dont refer these two fields as a predefined dataelment.We can refer standard predefined datatype otherwise some other data element.&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any probelm  replay that one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;muralii&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Nov 2010 10:19:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-11-26T10:19:50Z</dc:date>
    <item>
      <title>input help for screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440339#M1551594</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;&lt;/P&gt;&lt;P&gt;i have two problems.&lt;/P&gt;&lt;P&gt;1) When i change  input attiribute of input/output field  is required , any user command (like exit or back command etc.) doesn't work. &lt;/P&gt;&lt;P&gt;2) i have two different field in my screen lifnr and belnr. but i can't use f4 search help for that fields. i have defined search help in my ztable (SE11) and element list-references (SE51) and fm F4IF_FIELD_VALUE_REQUEST and fm F4IF_INT_TABLE_VALUE_REQUEST. i have put process on valeu-request in flow logic. But when program run , skip this event.&lt;/P&gt;&lt;P&gt;all of them it doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what should i do?&lt;/P&gt;&lt;P&gt;thaks for your helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Nov 2010 11:21:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440339#M1551594</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-25T11:21:24Z</dc:date>
    </item>
    <item>
      <title>Re: input help for screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440340#M1551595</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;Dont refer these two fields as a predefined dataelment.We can refer standard predefined datatype otherwise some other data element.&lt;/P&gt;&lt;P&gt;F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if any probelm  replay that one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;muralii&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Nov 2010 10:19:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440340#M1551595</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-26T10:19:50Z</dc:date>
    </item>
    <item>
      <title>Re: input help for screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440341#M1551596</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;try the following code...and change the &amp;lt;.....&amp;gt;  according to your program..Do the same thing for the second screen field also.&lt;/P&gt;&lt;P&gt;If you face same problem then please let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module display_f4help input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'F4IF_FIELD_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    exporting&lt;/P&gt;&lt;P&gt;      tabname           = '&amp;lt;tablename&amp;gt;'&lt;/P&gt;&lt;P&gt;      fieldname         = '&amp;lt;fieldname&amp;gt;'&lt;/P&gt;&lt;P&gt;      dynpprog          = sy-cprog&lt;/P&gt;&lt;P&gt;      dynpnr            = sy-dynnr&lt;/P&gt;&lt;P&gt;      dynprofield       = '&amp;lt;screen-field name&amp;gt;'&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      field_not_found   = 1&lt;/P&gt;&lt;P&gt;      no_help_for_field = 2&lt;/P&gt;&lt;P&gt;      inconsistent_help = 3&lt;/P&gt;&lt;P&gt;      no_values_found   = 4&lt;/P&gt;&lt;P&gt;      others            = 5.&lt;/P&gt;&lt;P&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    message id sy-msgid type 'S' number sy-msgno&lt;/P&gt;&lt;P&gt;    with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.                                     " IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                             " DISPLAY_F4HELP  INPUT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Nov 2010 08:58:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440341#M1551596</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-11-29T08:58:53Z</dc:date>
    </item>
    <item>
      <title>Re: input help for screen fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440342#M1551597</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;To bring F4 help from Ztable field to screen&lt;/P&gt;&lt;P&gt;simple way other than search help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS ON VALUE-REQUEST.&lt;/P&gt;&lt;P&gt;   FIELD ZTABLE-FIELD1 MODULE F4_MODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN F4_MODULE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILL the  internal IT_ZTABLE WITH CONTENTS OF FIELD1 from ZTABLE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      RETFIELD        = 'FIELD1'&lt;/P&gt;&lt;P&gt;      DYNPPROG        = SY-REPID&lt;/P&gt;&lt;P&gt;      DYNPNR          = SY-DYNNR&lt;/P&gt;&lt;P&gt;      DYNPROFIELD     = 'ZTABLE-FIELD1'&lt;/P&gt;&lt;P&gt;      VALUE_ORG       = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB       = LT_GRID&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      PARAMETER_ERROR = 1&lt;/P&gt;&lt;P&gt;      NO_VALUES_FOUND = 2&lt;/P&gt;&lt;P&gt;      OTHERS          = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to make the EXIT,BACK work on all situation in standard tool bar &lt;/P&gt;&lt;P&gt;in menupainter for that perticular Function attribute give FUNCTION TYPE = 'E'.&lt;/P&gt;&lt;P&gt;NOTE : the user actions must be in at exit command module in PBO&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 04 Dec 2010 21:13:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/input-help-for-screen-fields/m-p/7440342#M1551597</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-04T21:13:02Z</dc:date>
    </item>
  </channel>
</rss>

