<?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>Question Re: F4 ON VALUE-REQUEST  (second screen) in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887483#M4463097</link>
    <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; your comment is appropriate...again.It is not my problem that you do not read the question, as it seems the below user did help me solve the problem without asking 100 question.I have described the problem in detail above....and why should I be careful asking question? wft are you threatening me with down votes?&lt;/P&gt;</description>
    <pubDate>Mon, 10 Jun 2019 11:34:37 GMT</pubDate>
    <dc:creator>former_member2492</dc:creator>
    <dc:date>2019-06-10T11:34:37Z</dc:date>
    <item>
      <title>F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaq-p/11887472</link>
      <description>&lt;P&gt;&lt;STRONG&gt;My sceen 200 is called from a button in screen 100.&lt;/STRONG&gt;&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;At PROCESS AFTER INPUT.(screen 200)PROCESS ON VALUE-REQUEST.
FIELD LT_TABLE-LGORT
MODULE f4help.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;&lt;STRONG&gt;Code:&lt;/STRONG&gt;&lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;SELECT SINGLE LGORT
 FROM MARD
 WHERE MATNR EQ @LT_TABLE-MATNR
 AND WERKS EQ @LT_TABLE-werks
 INTO @IT_FINAL.


 CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
 EXPORTING
 RETFIELD = 'LGORT'
 VALUE_ORG = 'S'
 TABLES
 VALUE_TAB = IT_FINAL
 RETURN_TAB = IT_RETURN.


 WRITE IT_RETURN-FIELDVAL TO LT_TABLE-LGORT.
 REFRESH IT_FINAL.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt;But it is not opening.&lt;/P&gt;
  &lt;P&gt;&lt;STRONG&gt;If I simply call the perform ,it will open automatically...&lt;/STRONG&gt;&lt;/P&gt;
  &lt;P&gt;&lt;EM&gt;How can I fix this?&lt;/EM&gt;&lt;/P&gt;
  &lt;P&gt;Thank You in advance&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2019 15:31:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaq-p/11887472</guid>
      <dc:creator>former_member2492</dc:creator>
      <dc:date>2019-06-08T15:31:45Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887473#M4463087</link>
      <description>&lt;P&gt;In debug, what happens?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2019 17:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887473#M4463087</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-08T17:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887474#M4463088</link>
      <description>&lt;P&gt;You are doing select single and data must be going into work area and not internal table. &lt;/P&gt;&lt;P&gt;Can you please paste the complete code ?&lt;/P&gt;</description>
      <pubDate>Sat, 08 Jun 2019 23:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887474#M4463088</guid>
      <dc:creator>rameez_khan</dc:creator>
      <dc:date>2019-06-08T23:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887475#M4463089</link>
      <description>&lt;P&gt;your naming convention quite confused, are you trying to set F4 help in table control? and what is the point of select single...&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2019 15:17:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887475#M4463089</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-06-09T15:17:16Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887476#M4463090</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;rameez.khan&lt;/SPAN&gt;  I think it is the complete code,the only thing missing is the data declaration,which I have taken from &lt;A href="https://www.erpworkbench.com/abap/sap-fmodules/F4IF_INT_TABLE_VALUE_REQUEST.htm"&gt;this link&lt;/A&gt; .Please let me know what else you need!&lt;/P&gt;&lt;P&gt;  &lt;SPAN class="mention-scrubbed"&gt;quynh.doanmanh&lt;/SPAN&gt; I am trying to populate the f4 help with the results from my select.Basically I dont want to show all the Storage Locations but only those who are selected.If I put that as a &lt;STRONG&gt;Perform &lt;/STRONG&gt;it will open populated automatically.After adding it inside a Module at &lt;STRONG&gt;PAI it does not show at all,&lt;/STRONG&gt;how can I fix this?&lt;/P&gt;&lt;P&gt;   &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; the table is filled,only when I call it inside the module at PAI it does not show,if I put it somewhere else it opens automatically,I am trying to avoid this.Can you help me?&lt;/P&gt;</description>
      <pubDate>Sun, 09 Jun 2019 18:47:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887476#M4463090</guid>
      <dc:creator>former_member2492</dc:creator>
      <dc:date>2019-06-09T18:47:34Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887477#M4463091</link>
      <description>&lt;P&gt;its difference when you call F4 help for a selection screen field, dynpro field or dynpro table control...from your code, I can see you call method for LT_TABLE-LGORT, which is syntax of a work area then I think you trying to set search help for field in table control. in that case, you can follow this wiki:&lt;/P&gt;&lt;P&gt;&lt;A href="https://wiki.scn.sap.com/wiki/display/ABAP/Filtering+F4+Help+values+in+Table+control%2C+based+on+other+field+value" target="test_blank"&gt;https://wiki.scn.sap.com/wiki/display/ABAP/Filtering+F4+Help+values+in+Table+control%2C+based+on+other+field+value&lt;/A&gt;&lt;/P&gt;&lt;P&gt;if you trying to set for normal field in dynpro (which i found it quite strange with your variable name), you can check demo program: DEMO_DYNPRO_F4_HELP_MODULE&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 00:32:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887477#M4463091</guid>
      <dc:creator>DoanManhQuynh</dc:creator>
      <dc:date>2019-06-10T00:32:54Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887478#M4463092</link>
      <description>&lt;P&gt;Is the field name in the dynpro definition actually 'LT_TABLE-LGORT' and, if yes, is this field defined in
some &lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/en-US/abendynp_table_controls.htm"&gt;TABLE CONTROL&lt;/A&gt;?&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;In case of TABLE
CONTROL you must use the field STEPL to communicate the record index with
related FM, get it from FM &lt;A href="https://launchpad.support.sap.com/#/solutions/notesv2/?q=DYNP_GET_STEPL"&gt;DYNP_GET_STEPL&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;You are also
required to get values of plant and material currently on screen before
selecting data, the PAI is not yet executed so Abap variables are not updated,
use FM &lt;A href="https://launchpad.support.sap.com/#/solutions/notesv2/?q=DYNP_VALUES_READ"&gt;DYNP_VALUES_READ&lt;/A&gt; (also with STEPL if TABLE CONTROL)&lt;/LI&gt;&lt;LI&gt;Either give the
actual field name on dynpro to the F4 FM or update it explicitly from returned
value with FM &lt;A href="https://launchpad.support.sap.com/#/solutions/notesv2/?q=DYNP_VALUES_UPDATE"&gt;DYNP_VALUES_UPDATE&lt;/A&gt; (also with STEPL...)&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 10 Jun 2019 07:33:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887478#M4463092</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2019-06-10T07:33:26Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887479#M4463093</link>
      <description>&lt;P&gt;"Debug" means setting a breakpoint and checking variable contents at each step, you could then understand what's going on, or at least give us some good information. You should avoid using heading lines, they have been &lt;STRONG&gt;OBSOLETE&lt;/STRONG&gt; for a long time now, because they are prone to errors. I tried your code, and it works fine for me as follows (using screen field SCARR-CARRID instead of LT_TABLE-LGORT):&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA scarr TYPE scarr.
CALL SCREEN 200.
*PROCESS ON VALUE-REQUEST.
*FIELD SCARR-CARRID MODULE f4help.
MODULE f4help INPUT.
  SELECT *
   FROM scarr
   INTO TABLE @DATA(it_final).
  DATA it_return TYPE TABLE OF ddshretval.
  CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
    EXPORTING
      retfield   = 'CARRID'
      value_org  = 'S'
    TABLES
      value_tab  = it_final
      return_tab = it_return.
  scarr-carrid = VALUE #( it_return[ 1 ]-fieldval OPTIONAL ).
ENDMODULE.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 10 Jun 2019 08:08:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887479#M4463093</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-10T08:08:37Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887480#M4463094</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'DYNP_GET_STEPL'
 IMPORTING
 POVSTEPL = LD_POVSTEPL .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Fixed everything,thanks&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 08:16:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887480#M4463094</guid>
      <dc:creator>former_member2492</dc:creator>
      <dc:date>2019-06-10T08:16:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887481#M4463095</link>
      <description>&lt;P&gt;Sandra I only needed to define STEPL  in the FM. thank you too&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 09:02:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887481#M4463095</guid>
      <dc:creator>former_member2492</dc:creator>
      <dc:date>2019-06-10T09:02:27Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887482#M4463096</link>
      <description>&lt;P&gt;So, you meant the window did open but your problem was different (getting the right line of the table control). Be careful to ask the right question, next time.&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 10:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887482#M4463096</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-06-10T10:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: F4 ON VALUE-REQUEST  (second screen)</title>
      <link>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887483#M4463097</link>
      <description>&lt;P&gt; &lt;SPAN class="mention-scrubbed"&gt;sandra.rossi&lt;/SPAN&gt; your comment is appropriate...again.It is not my problem that you do not read the question, as it seems the below user did help me solve the problem without asking 100 question.I have described the problem in detail above....and why should I be careful asking question? wft are you threatening me with down votes?&lt;/P&gt;</description>
      <pubDate>Mon, 10 Jun 2019 11:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/f4-on-value-request-second-screen/qaa-p/11887483#M4463097</guid>
      <dc:creator>former_member2492</dc:creator>
      <dc:date>2019-06-10T11:34:37Z</dc:date>
    </item>
  </channel>
</rss>

