<?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: Screen Programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973465#M1695928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;H1 class="fn n"&gt;Silambarasan Ashok kumar&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nonsense!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Aug 2012 19:07:10 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2012-08-11T19:07:10Z</dc:date>
    <item>
      <title>Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973461#M1695924</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;I am developing a screen program.&lt;/P&gt;&lt;P&gt;Actually I want to disable a field in such a way that user not be able to type anything in the input field but still be able to select the item from F4 help.&lt;/P&gt;&lt;P&gt;In orde words, I want to select the item with F4 but doesn't let the user type into the input field and mess around the input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have found and used &lt;STRONG&gt;screen-input = &lt;/STRONG&gt;&lt;SPAN class="L0S33"&gt;&lt;STRONG&gt;'0'&lt;/STRONG&gt;, I can select the item from F4 but after that the selected item will not ne shown in the field.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have such a experience on this I would be grateful if you share it with me.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Richard&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2012 17:38:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973461#M1695924</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-10T17:38:00Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973462#M1695925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First a question: Are you developing a selection screen, or a dynpro?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using a selection screen, you can use the event AT SELECTION-SCREEN ON VALUE-REQUEST FOR &amp;lt;field&amp;gt; to write custom logic for responding to an F4 on the field &amp;lt;field&amp;gt;. Here you can call the search-help directly and populate the field yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you're using a dynpro, you can define a module to respond to the F4 with the statement FIELD &amp;lt;field&amp;gt; MODULE &amp;lt;module&amp;gt; ON VALUE-REQUEST. Again, in the module you can call the search-help directly and populate the field yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One other thing to consider: It sounds like a dropdown is more appropriate for your needs, but I can understand how you'd want to use the search help for advanced functionality.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2012 21:08:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973462#M1695925</guid>
      <dc:creator>alex_campbell</dc:creator>
      <dc:date>2012-08-10T21:08:20Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973463#M1695926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Richard,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thats's standard. You can use F4 wherever it is enabled just to show the possible values. Only editable fields (edit = 1) will update with selected value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 10 Aug 2012 21:38:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973463#M1695926</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2012-08-10T21:38:28Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973464#M1695927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use below function module in process on value request , then user selected values are in RETURN you can read this value and assign your particular field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;call &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;function &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;exporting&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; retfield&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S55"&gt;= 'ARBPL'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value_org&amp;nbsp; &lt;SPAN class="L0S55"&gt;= 'S'&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;tables&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; value_tab&amp;nbsp; &lt;SPAN class="L0S55"&gt;= IT_WC&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; return_tab &lt;SPAN class="L0S55"&gt;= RETURN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ ATBLE RETURN INDEX 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp; zhapes&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;arbpl &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;return&lt;/SPAN&gt;&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;fieldval&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Aug 2012 10:10:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973464#M1695927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-08-11T10:10:33Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973465#M1695928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;H1 class="fn n"&gt;Silambarasan Ashok kumar&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/H1&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nonsense!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Aug 2012 19:07:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973465#M1695928</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2012-08-11T19:07:10Z</dc:date>
    </item>
    <item>
      <title>Re: Screen Programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973466#M1695929</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;Please use my response in this discussion &lt;A __default_attr="1624403" __jive_macro_name="thread" class="jive_macro jive_macro_thread" href="https://community.sap.com/"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The parameter (display = 'F' "F = Force) does that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 12 Aug 2012 05:21:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-programming/m-p/8973466#M1695929</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2012-08-12T05:21:45Z</dc:date>
    </item>
  </channel>
</rss>

