<?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: Problem while using the FM F4IF_START_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025529#M962060</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Srinivas,

After calling the function module, just write this piece of code.
&lt;PRE&gt;&lt;CODE&gt;Read table ta_flds_out index 1.
if sy-subrc = 0.
  s_txtid-low = ta_flds_out-fieldval.
endif.&lt;/CODE&gt;&lt;/PRE&gt;

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 18 Jun 2008 08:05:02 GMT</pubDate>
    <dc:creator>venkat_o</dc:creator>
    <dc:date>2008-06-18T08:05:02Z</dc:date>
    <item>
      <title>Problem while using the FM F4IF_START_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025526#M962057</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;     I am using the FM F4IF_START_VALUE_REQUEST to get the F4 help for the field S_TXTID. I am using the search help H_TXTID. I am getting the popup with the correct values but at the sametime whin select the vale from the popup it is getting transferred to dynnpro field. My field name is S_TXTID-LOW.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is my code .&lt;/P&gt;&lt;P&gt;DATA: ta_shlp         TYPE shlp_descr_t,&lt;/P&gt;&lt;P&gt;Types : ta_flds_out1 type ddshretval.&lt;/P&gt;&lt;P&gt;  Data : ta_flds_out type standard table of&lt;/P&gt;&lt;P&gt;                               ta_flds_out1&lt;/P&gt;&lt;P&gt;                               with header line.&lt;/P&gt;&lt;P&gt;data : tp_shlpname     LIKE ddshdescr-shlpname VALUE 'H_TTXID',&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_GET_SHLP_DESCR'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      shlpname = tp_shlpname&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      shlp     = ta_shlp&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      OTHERS   = 0.&lt;/P&gt;&lt;P&gt;  CHECK sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_START_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       SHLP                = ta_shlp&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPONLY            = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAXRECORDS          = 500&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MULTISEL            = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUCOL               = SY-CUCOL&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CUROW               = SY-CUROW&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      RC                  = l_rc&lt;/P&gt;&lt;P&gt;     TABLES&lt;/P&gt;&lt;P&gt;       RETURN_VALUES       = ta_flds_out&lt;/P&gt;&lt;P&gt;             .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CHECK l_rc = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; if not ta_flds_out[] is initial.&lt;/P&gt;&lt;P&gt;    s_txtid-sign = 'I'.&lt;/P&gt;&lt;P&gt;    s_txtid-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    loop at ta_flds_out.&lt;/P&gt;&lt;P&gt;      s_txtid-low = ta_flds_out-fieldval.&lt;/P&gt;&lt;P&gt;      append s_txtid.&lt;/P&gt;&lt;P&gt;    endloop.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me a solution with the piece of code.&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinivas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 04:47:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025526#M962057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T04:47:43Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using the FM F4IF_START_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025527#M962058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Instead of that u can try with&lt;/P&gt;&lt;P&gt;FM "F4IF_INT_TABLE_VALUE_REQUEST".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Srimanta&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 05:48:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025527#M962058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T05:48:19Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using the FM F4IF_START_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025528#M962059</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt; Thanks for the reply but i want to restrict the values depending on the other field selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Srinivas.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 06:26:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025528#M962059</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-18T06:26:21Z</dc:date>
    </item>
    <item>
      <title>Re: Problem while using the FM F4IF_START_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025529#M962060</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;
Hi Srinivas,

After calling the function module, just write this piece of code.
&lt;PRE&gt;&lt;CODE&gt;Read table ta_flds_out index 1.
if sy-subrc = 0.
  s_txtid-low = ta_flds_out-fieldval.
endif.&lt;/CODE&gt;&lt;/PRE&gt;

Regards,
Venkat.O
&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jun 2008 08:05:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-while-using-the-fm-f4if-start-value-request/m-p/4025529#M962060</guid>
      <dc:creator>venkat_o</dc:creator>
      <dc:date>2008-06-18T08:05:02Z</dc:date>
    </item>
  </channel>
</rss>

