<?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_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700782#M307249</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;after the user selects 1 of the parameter then depending on the first u can write a select statment which can fill the next parameter. or u can may be hardcode the ext parameter depending on your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 24 Nov 2006 09:05:19 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-11-24T09:05:19Z</dc:date>
    <item>
      <title>F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700778#M307245</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 have 2 parameters on my selection screen for which  i have given on value request help using fm F4IF_INT_TABLE_VALUE_REQUEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the 2 para are firstname and lastname.when the user press f4 help he can see both first name and last name.&lt;/P&gt;&lt;P&gt;my requirement is when he click on first name the last name paramters shl aslo get filled or when he chose for last name f4 help the first name shld get filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can we achive this.&lt;/P&gt;&lt;P&gt;pls help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 08:28:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700778#M307245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T08:28:41Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700779#M307246</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have a look at &lt;A href="http://help.sap.com/saphelp_45b/helpdata/en/9f/dbaac935c111d1829f0000e829fbfe/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_45b/helpdata/en/9f/dbaac935c111d1829f0000e829fbfe/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 08:35:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700779#M307246</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T08:35:39Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700780#M307247</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pawan,&lt;/P&gt;&lt;P&gt;here a short example how i do it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FECOD.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  REFRESH: T_QPK1CDTAB.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'QPK1_GP_CODE_SELECTION'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_KATALOGART           = 'C'&lt;/P&gt;&lt;P&gt;            I_CODEGRUPPE           = P_FEGRP&lt;/P&gt;&lt;P&gt;            I_CODE                 = '*'&lt;/P&gt;&lt;P&gt;            I_SPRACHE              = SY-LANGU&lt;/P&gt;&lt;P&gt;            I_PICKUP_MODE          = 'X'&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            T_QPK1CDTAB            = T_QPK1CDTAB&lt;/P&gt;&lt;P&gt;       EXCEPTIONS&lt;/P&gt;&lt;P&gt;            NO_MATCH_IN_RANGE      = 1&lt;/P&gt;&lt;P&gt;            NO_USER_SELECTION      = 2&lt;/P&gt;&lt;P&gt;            NO_AUTHORIZATION       = 3&lt;/P&gt;&lt;P&gt;            NO_SELECTION_SPECIFIED = 4&lt;/P&gt;&lt;P&gt;            OBJECT_LOCKED          = 5&lt;/P&gt;&lt;P&gt;            LOCK_ERROR             = 6&lt;/P&gt;&lt;P&gt;            OBJECT_MISSING         = 7&lt;/P&gt;&lt;P&gt;            OTHERS                 = 8.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  READ TABLE T_QPK1CDTAB INDEX 1.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  P_FEGRP = T_QPK1CDTAB-CODEGRUPPE.&lt;/P&gt;&lt;P&gt;  P_FECOD = T_QPK1CDTAB-CODE.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'.&amp;lt;/b&amp;gt;*&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I set both parameters in the F4. I have 2 F4-Forms for  P_FEGRP and  P_FECOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 08:38:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700780#M307247</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T08:38:06Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700781#M307248</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dieter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This FM does not exist in my system r u sure this is the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 09:00:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700781#M307248</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T09:00:52Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700782#M307249</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;after the user selects 1 of the parameter then depending on the first u can write a select statment which can fill the next parameter. or u can may be hardcode the ext parameter depending on your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 09:05:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700782#M307249</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T09:05:19Z</dc:date>
    </item>
    <item>
      <title>Re: F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700783#M307250</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi pawan,&lt;/P&gt;&lt;P&gt;what i want to show is how i fill 2 parameters in 1 F4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i show it simpler:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_lastname.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;read lastname and firstname as you want.&lt;/P&gt;&lt;P&gt;P_lastname = lastname from table.&lt;/P&gt;&lt;P&gt;P_firstname = firstname from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_firstname.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;read lastname and firstname as you wantt.&lt;/P&gt;&lt;P&gt;P_lastname = lastname from table.&lt;/P&gt;&lt;P&gt;P_firstname = firstname from table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SAPGUI_SET_FUNCTIONCODE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Dieter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Nov 2006 09:07:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/1700783#M307250</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-24T09:07:44Z</dc:date>
    </item>
  </channel>
</rss>

