<?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 Needed F4IF_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664313#M882648</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u must be fetching the values into some variables, right?? then check the data type of the variables u are using and try modifying them....&lt;/P&gt;&lt;P&gt;i hope it works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do reward if helpful or get bak for further assistance.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Apr 2008 07:49:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-08T07:49:25Z</dc:date>
    <item>
      <title>F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664312#M882647</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using the F4IF_INT_TABLE_VALUE_REQUEST function module to populate an F4 help. I am getting a weird situation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the code i am using:&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DDIC_STRUCTURE         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      RETFIELD               = f_name "field name to be populated&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PVALKEY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    DYNPPROG               = SY-CPROG&lt;/P&gt;&lt;P&gt;    DYNPNR                 = SY-DYNNR&lt;/P&gt;&lt;P&gt;    DYNPROFIELD            = lv_dynprofield&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  STEPL                  = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  WINDOW_TITLE           =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  VALUE                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    VALUE_ORG              = 'S'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MULTIPLE_CHOICE        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DISPLAY                = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_PROGRAM       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CALLBACK_FORM          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MARK_TAB               =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  USER_RESET             =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      VALUE_TAB            = it_t77tp[] &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   RETURN_TAB            =  &lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;the table it_t77tp has 2 colums [4 digit number and associated text]. the f4 help does show the 2colums, but on clicking on the right value, it always picks the last 4characters of the second column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so if i make it text followed by number, it gives me number,&lt;/P&gt;&lt;P&gt;but i make it number followed by text (which is what the user wants), it selects the first 4 characters of the text.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;could you please tell me where am i going wrong? is there some table that i am passing / providing?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;vivek&lt;/P&gt;&lt;P&gt;ps:rewards for useful answers &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 07:47:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664312#M882647</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T07:47:02Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664313#M882648</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u must be fetching the values into some variables, right?? then check the data type of the variables u are using and try modifying them....&lt;/P&gt;&lt;P&gt;i hope it works...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;do reward if helpful or get bak for further assistance.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 07:49:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664313#M882648</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T07:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664314#M882649</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 below logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters: p_abkrs(4) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of it_abkrs occurs 0,&lt;/P&gt;&lt;P&gt;       abkrs type abkrs,&lt;/P&gt;&lt;P&gt;       atext type abktx,&lt;/P&gt;&lt;P&gt;      end of it_abkrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at selection-screen on value-request for p_abkrs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select abkrs atext from t549t into table it_abkrs&lt;/P&gt;&lt;P&gt;where sprsl = sy-langu.&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               = 'ABKRS'&lt;/P&gt;&lt;P&gt;    DYNPPROG               = sy-repid&lt;/P&gt;&lt;P&gt;    DYNPNR                 = sy-dynnr&lt;/P&gt;&lt;P&gt;    DYNPROFIELD            = 'P_ABKRS'&lt;/P&gt;&lt;P&gt;    VALUE_ORG              = 'S'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB              = it_abkrs&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 &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 07:53:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664314#M882649</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T07:53:22Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664315#M882650</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i hv kept in mind the above 2 solution, but this doesnt seem to be working. is there something like using some more tables or some other parameters?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i am still looking for answers...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;v&lt;/P&gt;&lt;P&gt;ps:points for answers...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 08:14:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664315#M882650</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T08:14:12Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664316#M882651</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wht is the value of lv_dynprofield tht ur passing to dynpro field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u should always pass the parameter DYNPROFIELD the parameter on the screen this fm matches thes definitions and passes the value to the screen accordingly if it does not get proper value it will give some default in return...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ashwinee mali on Apr 8, 2008 2:17 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 08:46:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664316#M882651</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T08:46:16Z</dc:date>
    </item>
    <item>
      <title>Re: F4 Help Needed F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664317#M882652</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i am sending the selection_option -high / low field in lv_dynprofield, depending on which value request is made.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there some tables that i need to pass more, or some conversions etc to do once the FM is run?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;v&lt;/P&gt;&lt;P&gt;ps:points still up for grabs.. &lt;SPAN __jive_emoticon_name="wink"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Apr 2008 08:57:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4-help-needed-f4if-int-table-value-request/m-p/3664317#M882652</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-08T08:57:51Z</dc:date>
    </item>
  </channel>
</rss>

