<?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: F4 value help in table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959248#M394483</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pit,&lt;/P&gt;&lt;P&gt;Use the Fucntion module DDUT_DOMVALUES_GET to get the Domain Fixed Values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 02 Mar 2007 15:01:27 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-03-02T15:01:27Z</dc:date>
    <item>
      <title>F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959240#M394475</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 need to create a function that can take a value help for a table filed into internal table without showing this value help on the screen. I need to transfer the table with value help to WebDynpro application. I found the functions HELP_VALUES_GET_*, but I couldn&amp;#146;t find anyone that returns the values and do not display them on the screen. Does anybody have an idea what I should do?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Pit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 10:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959240#M394475</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T10:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959241#M394476</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried  FM 'GET_DOMAIN_VALUES'  ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 11:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959241#M394476</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T11:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959242#M394477</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;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: FIELDS LIKE HELP_VALUE      OCCURS 1 WITH HEADER LINE.
DATA: VALUER LIKE DFIES-FIELDTEXT OCCURS 1 WITH HEADER LINE.

 CLEAR: FIELDS[]
      , VALUER[]
      , IY17FI_KREDIT_FLT[]
      .

  SELECT DISTINCT FCITY
         INTO CORRESPONDING FIELDS OF TABLE IY17FI_KREDIT_FLT
         FROM Y17FI_KREDIT_FLT.

  CHECK SY-SUBRC EQ 0.

  LOOP AT IY17FI_KREDIT_FLT.
     VALUER = IY17FI_KREDIT_FLT-FCITY.   APPEND VALUER.
  ENDLOOP.

  FIELDS-TABNAME    = 'Y17FI_KREDIT_FLT'.
  FIELDS-FIELDNAME  = 'FCITY'.
  FIELDS-SELECTFLAG = 'X'.
  APPEND FIELDS.

  CALL FUNCTION 'HELP_VALUES_GET_WITH_TABLE'
          EXPORTING
             DISPLAY      = ' '
             FIELDNAME    = 'FCITY'
             TABNAME      = 'Y17FI_KREDIT_FLT'
             TITEL        = 'City'
          IMPORTING
             SELECT_VALUE = ITAB-FCITY
          TABLES
             FIELDS       = FIELDS
             VALUETAB     = VALUER.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 11:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959242#M394477</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T11:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959243#M394478</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;Plz check this link&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/blocking-searchhelp-and-create-new-searchhelp.htm" target="test_blank"&gt;http://www.sap-img.com/abap/blocking-searchhelp-and-create-new-searchhelp.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 11:34:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959243#M394478</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T11:34:26Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959244#M394479</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;Thanks. I tried what you suggested. The function returns an exception but the transparent table is full!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 11:39:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959244#M394479</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T11:39:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959245#M394480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried this FM F4IF_FIELD_VALUE_REQUEST  and gives me enough information but now I have another problem. Some of the fields have collective search helps and need to find out a way to suppress the pop up window with criteria. Do you have any suggestions?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 12:18:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959245#M394480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T12:18:30Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959246#M394481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I actually did not need a function to display an internal table as a F4 value help.&lt;/P&gt;&lt;P&gt;My case is the opposite: I need a function that takes this values that the system creates and puts them into internal table without displaying the results on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 14:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959246#M394481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T14:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959247#M394482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Petar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the FM F4IF_FIELD_VALUE_REQUEST&lt;/P&gt;&lt;P&gt;there is parameter called &amp;lt;b&amp;gt;SUPPRESS_RECORDLIST = 'X'&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So u will the values in the itab without displaying.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 15:00:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959247#M394482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T15:00:46Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959248#M394483</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Pit,&lt;/P&gt;&lt;P&gt;Use the Fucntion module DDUT_DOMVALUES_GET to get the Domain Fixed Values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt; Sudheer&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 15:01:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959248#M394483</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T15:01:27Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959249#M394484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

check this sample code
DATA F4VA LIKE DDSHRETVAL OCCURS 20 WITH HEADER LINE.
CALL FUNCTION 'F4IF_FIELD_VALUE_REQUEST'
     EXPORTING
          TABNAME             = 'TVKO'
          FIELDNAME           = 'VKORG'
*          DISPLAY             = 'X'
          SUPPRESS_RECORDLIST = 'X'
     TABLES
          RETURN_TAB          = F4VA
     EXCEPTIONS
          OTHERS              = 1.

LOOP AT F4VA.
  WRITE:/ F4VA.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If useful reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 15:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959249#M394484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T15:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959250#M394485</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks all of you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried (as I wrote in previous posting) this function and I like the result in the return_tab.&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                = 'ZTR3_APRHIST'&lt;/P&gt;&lt;P&gt;    fieldname               = 'LIFNR'&lt;/P&gt;&lt;P&gt;    value                      = '6*'&lt;/P&gt;&lt;P&gt;    suppress_recordlist = 'X'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    return_tab          = tb_f4_help&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;&lt;/P&gt;&lt;P&gt;BUT when I call the func. a window appears to enter more selection criteria.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suppose that it is because the field 'LIFNR' has a collective search help 'KRED_C' which is linked to 11 search help tables. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is that I do not know how to confirm this window using some ABAP code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 15:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959250#M394485</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T15:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959251#M394486</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use the FM   RFC_GET_NAMETAB&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 16:02:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959251#M394486</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T16:02:00Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959252#M394487</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Petar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Better U can do one thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since the LFA1 is check table for LIFNR u ca directly select from LFA1 into itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 02 Mar 2007 16:06:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959252#M394487</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-02T16:06:31Z</dc:date>
    </item>
    <item>
      <title>Re: F4 value help in table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959253#M394488</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you, Vasanth!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope that this will resolve my problem in the exact case. Unfortuntelly this is not a general solution. I should do the same for 5 more fileds of differen tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you, Eswar!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will try that FM the next week, because I have no access to SAP servers at home.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Pit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 03 Mar 2007 15:50:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-value-help-in-table/m-p/1959253#M394488</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-03-03T15:50:27Z</dc:date>
    </item>
  </channel>
</rss>

