<?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: F4IF_FIELD_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017212#M80316</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,  Are you saying that column 1 and column 2 in the search help are not at all related.  What search help is it that you are calling or is it custom?  Post some relevant code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jul 2005 18:15:15 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2005-07-18T18:15:15Z</dc:date>
    <item>
      <title>F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017205#M80309</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am using F4IF_FIELD_VALUE_REQUEST function for executing  standard help, i can see the results in the screen, but the returntab, only contains the fieldname especified on the fieldname, and i can only put there one field, i need at least two params of the selected line, can i use this function in the way i want or does anybody knows another function more suitable for me?,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 15:23:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017205#M80309</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-18T15:23:38Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017206#M80310</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't think you can use it that way.   Exactly what is your requirement,  what fields do you want in what search help.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 16:57:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017206#M80310</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-18T16:57:41Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017207#M80311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is an sample program using company code search help.&lt;/P&gt;&lt;P&gt;Implement the following program and run thru debugger.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


report zrich_0002 .

parameters: p_bukrs(4) type c,
            p_butxt(50) type c.

data: dynfields type table of dynpread with header line.
data: return type table of ddshretval with header line.

at selection-screen on value-request for p_bukrs.

  call function 'F4IF_FIELD_VALUE_REQUEST'
       exporting
            tabname           = 'T001'
            fieldname         = 'BUKRS'
            dynpprog          = sy-cprog
            dynpnr            = sy-dynnr
            dynprofield       = 'P_BUKRS'
       tables
            return_tab        = return
       exceptions
            field_not_found   = 1
            no_help_for_field = 2
            inconsistent_help = 3
            no_values_found   = 4
            others            = 5.

  read table return with key fieldname = 'P_BUKRS'.

* Add it back to the dynpro.
  dynfields-fieldname = return-retfield.
  dynfields-fieldvalue =  return-fieldval.
  append dynfields.

* Get the company code from db and add to dynpro
  dynfields-fieldname = 'P_BUTXT'.
  select single butxt into dynfields-fieldvalue
          from t001
                where bukrs = return-fieldval.
  append dynfields.

* Update the dynpro values.
  call function 'DYNP_VALUES_UPDATE'
       exporting
            dyname     = sy-cprog
            dynumb     = sy-dynnr
       tables
            dynpfields = dynfields
       exceptions
            others     = 8.

start-of-selection.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 17:23:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017207#M80311</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-18T17:23:10Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017208#M80312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rich, i have seen your example, but my problem is that the relation between my two fields are not unique,so i need the both, i am trying to do it with F4IF_INT_TABLE_VALUE_REQUEST, but my problem now is that in the return table is a recordpos field, but it doesn´t change when i select another line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 17:40:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017208#M80312</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-18T17:40:28Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017209#M80313</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm a little confused as to what exactly you are trying to do.  I need a bit deeper explaniation, and maybe you can post the selection screen code and the AT selection-screen code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 18:03:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017209#M80313</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-18T18:03:39Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017210#M80314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am in a dynpro, i don´t have a selection-screen and my problem exactly is that when i execute my help-request with a function, i only know to return one colum value and i want to know the selected line or two columns value..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you very much&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 18:10:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017210#M80314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-18T18:10:10Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017211#M80315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hellow, thank you for all, but i have decided to do it finding the description in another table,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 18:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017211#M80315</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-07-18T18:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017212#M80316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok,  Are you saying that column 1 and column 2 in the search help are not at all related.  What search help is it that you are calling or is it custom?  Post some relevant code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 18:15:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017212#M80316</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-18T18:15:15Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_FIELD_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017213#M80317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's what I was trying to show you in my example above.&lt;/P&gt;&lt;P&gt;I'm pretty sure that the functionality that you are looking for does not exists with this function module.  But if you know what the value is,  you can surely get the description from the DB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jul 2005 18:18:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-field-value-request/m-p/1017213#M80317</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2005-07-18T18:18:18Z</dc:date>
    </item>
  </channel>
</rss>

