<?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 Help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956188#M66355</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you mean to say that when the user selects a entry from the F4 popup , you want to get the description as well(along with the key selected), or you want the description to show up in the F4 pop up? (the second portion happens automatic, so i guess you are asking for the first one right?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can use FM DDUT_DOMVALUES_GET to get all the domain value texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 01 Aug 2005 11:22:24 GMT</pubDate>
    <dc:creator>athavanraja</dc:creator>
    <dc:date>2005-08-01T11:22:24Z</dc:date>
    <item>
      <title>F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956176#M66343</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everybody,&lt;/P&gt;&lt;P&gt;   I'm doing Module Pool Programming. I have got a F4 help on a screen field (Static values in domain of the field). Now my requirement is to retrieve the Code and Description on screen.&lt;/P&gt;&lt;P&gt;   Since no SQL will work hence I looked for FM. I got two FM 'F4IF_FIELD_VALUE_REQUEST' and 'F4IF_INT_TABLE_VALUE_REQUEST'. But it doesn't help me in my problem. &lt;/P&gt;&lt;P&gt;   Please give me some suggestions.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Deva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:25:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956176#M66343</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:25:06Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956177#M66344</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a elementary search help with exit. Write ur query in that exit. It will work fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regs,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:28:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956177#M66344</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:28:29Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956178#M66345</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;Actually, we are using the function module for the F4 help that returns the values selected in an internal table. Very handy when programming your very own F4 help for a field. &lt;/P&gt;&lt;P&gt;You should append values in f4tab.&lt;/P&gt;&lt;P&gt;Here is the sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables kna1.&lt;/P&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;begin of t_values occurs 2,&lt;/P&gt;&lt;P&gt;value like kna1-begru,&lt;/P&gt;&lt;P&gt;end of t_values,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_return like ddshretval occurs 0 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options s_begru for kna1-begru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for s_begru-low.&lt;/P&gt;&lt;P&gt;t_values = 'PAR*'.&lt;/P&gt;&lt;P&gt;append t_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_values = 'UGG'.&lt;/P&gt;&lt;P&gt;append t_values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;retfield = 'BEGRU'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;value_tab = t_values&lt;/P&gt;&lt;P&gt;return_tab = t_return&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;parameter_error = 1&lt;/P&gt;&lt;P&gt;no_values_found = 2&lt;/P&gt;&lt;P&gt;others = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;read table t_return index 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:28:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956178#M66345</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-08-01T10:28:38Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956179#M66346</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And also attach that search help to the field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regs,&lt;/P&gt;&lt;P&gt;Venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:29:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956179#M66346</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:29:12Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956180#M66347</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Deva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you can do this with the function module 'F4IF_INT_TABLE_VALUE_REQUEST'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;retfield = &amp;lt;- Field Name&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;value_tab = t_values&lt;/P&gt;&lt;P&gt;return_tab = t_return&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;parameter_error = 1&lt;/P&gt;&lt;P&gt;no_values_found = 2&lt;/P&gt;&lt;P&gt;others = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:32:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956180#M66347</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-08-01T10:32:17Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956181#M66348</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Venkat,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just a small query.&lt;/P&gt;&lt;P&gt;i know how to create elementary search help.&lt;/P&gt;&lt;P&gt;but what do you mean by "with exit".&lt;/P&gt;&lt;P&gt;if you can explain that in detail.&lt;/P&gt;&lt;P&gt;i will be very thankful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:33:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956181#M66348</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:33:10Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956182#M66349</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Again,&lt;/P&gt;&lt;P&gt;   Thanx for the quick reply. But none of them suits my requirement.&lt;/P&gt;&lt;P&gt;   I restate the problem. I have field on screen which has domain with static values defined. So I get F4 help on screen for the value (i.e Code). Now on screen I have another field where I have to retrieve the description against that Code of F4 help. &lt;/P&gt;&lt;P&gt;   Since the values are not store in some table hence there is no question of query. Plus the Function Module will be of no help as no-query situation. So how will I retrieve the description????&lt;/P&gt;&lt;P&gt;   thanx again for the replies earlier.&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;Deva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:36:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956182#M66349</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:36:18Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956183#M66350</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Deva,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are the values in some database table or internal table, which you want in F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLEASE CONFIRM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:41:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956183#M66350</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956184#M66351</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If the domian has static values, then you dont have to do anything. when defining the screen filed give it a name as data dictionary name (table-field) then you would get a promtp that do you want to refer to the dictionary filed. say yes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way you will automatically get the F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you dont want to give the filed a name as explained above, after doing those steps, just change the name alone to the desiered name. it would still work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956184#M66351</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-08-01T10:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956185#M66352</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanx Raja. You were still somewhere close. &lt;/P&gt;&lt;P&gt;   I understand that if you have same DDIC name on screen the F4 help is directly available. And I have done exactly the same. It retireves the value defined in the respective field. But additionally I want to retrieve the description defined against that static value.&lt;/P&gt;&lt;P&gt;   Any solutions???&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;Deva.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:52:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956185#M66352</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T10:52:49Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956186#M66353</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 the function module DDIF_FIELDINFO_GET to retrive value and description of domain fixed values. This you can use in the F4 function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also look at this post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="42288"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vinod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 10:54:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956186#M66353</guid>
      <dc:creator>Vinod_Chandran</dc:creator>
      <dc:date>2005-08-01T10:54:34Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956187#M66354</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just create one more elementary search help, let this search help contain two field , which is your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then from se11 you attach this search help explicitly to that particular field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or else during runtime retrieve the two fields in one internal table and attach this to that particular field. for which we have FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regard.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 11:10:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956187#M66354</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-08-01T11:10:18Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956188#M66355</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you mean to say that when the user selects a entry from the F4 popup , you want to get the description as well(along with the key selected), or you want the description to show up in the F4 pop up? (the second portion happens automatic, so i guess you are asking for the first one right?)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then you can use FM DDUT_DOMVALUES_GET to get all the domain value texts.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 01 Aug 2005 11:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help/m-p/956188#M66355</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-08-01T11:22:24Z</dc:date>
    </item>
  </channel>
</rss>

