<?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/5855169#M1320416</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Viquar, &lt;/P&gt;&lt;P&gt;                    I write code what you said but get_selected_return_code in that fields not coming any value .I am mention my code also kindly find wher am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: WA_Certificate type type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : get_selected_return_code TYPE TABLE OF ddshretval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;return_tab = get_selected_return_code&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;IF NOT get_selected_return_code[] IS INITIAL.&lt;/P&gt;&lt;P&gt;READ TABLE get_selected_return_code INTO get_selected_return_code INDEX 1.&lt;/P&gt;&lt;P&gt;P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 22 Jun 2009 07:39:58 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-06-22T07:39:58Z</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/5855161#M1320408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friends,&lt;/P&gt;&lt;P&gt;                        I am filling my list box in module pool program threw F4IF_INT_TABLE_VALUE_REQUEST this Fm module. My list box is filling but when am going to save that value i want to  save description id in the table insted of description how i have to do that thing .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;&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; thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855161#M1320408</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:23:02Z</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/5855162#M1320409</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;if you want to display the description id then pass that particular filed to the FM and return that into an internal table :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING
retfield = 'CERTIFICATEID'
value_org = 'S'

TABLES
value_tab = itab_Certificate
 return_tab   = gt_certificateid_returned

EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.

IF sy-subrc EQ 0.
    IF NOT gt_certificateid_returned[] IS INITIAL.
      READ TABLE gt_certificateid_returned INTO gs_certificateid_returned INDEX 1.
      p_certificateid = gs_certificateid_returned-fieldval.
    ENDIF.
  ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope thsi will solve your problem..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855162#M1320409</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:25:57Z</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/5855163#M1320410</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sneha,&lt;/P&gt;&lt;P&gt;               I want to display the CertificateName(Desc) But in the table i want to save the CertificateID(Descid) my list box is populating with Certificate Name(Desc) but when am going to save it's saving the Certificate Name(Desc) i want to save the ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:36:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855163#M1320410</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:36:40Z</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/5855164#M1320411</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;I think you need to fill KEY also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the below code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS : vrm. "Value Request Manager&lt;/P&gt;&lt;P&gt;tables: zkk_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: p_test AS LISTBOX VISIBLE LENGTH 12 OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM f4_value_request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;zkk_test-sno = p_test.&lt;/P&gt;&lt;P&gt;insert zkk_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE P_TEST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form f4_value_request&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------" /&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;FORM f4_value_request.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: l_name TYPE vrm_id,&lt;/P&gt;&lt;P&gt;li_list TYPE vrm_values,&lt;/P&gt;&lt;P&gt;l_value LIKE LINE OF li_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'A'.&lt;/P&gt;&lt;P&gt;l_value-text = 'January'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'B'.&lt;/P&gt;&lt;P&gt;l_value-text = 'February'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'C'.&lt;/P&gt;&lt;P&gt;l_value-text = 'March'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'D'.&lt;/P&gt;&lt;P&gt;l_value-text = 'April'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'E'.&lt;/P&gt;&lt;P&gt;l_value-text = 'May'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'F'.&lt;/P&gt;&lt;P&gt;l_value-text = 'June'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'G'.&lt;/P&gt;&lt;P&gt;l_value-text = 'July'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'H'.&lt;/P&gt;&lt;P&gt;l_value-text = 'August'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'I'.&lt;/P&gt;&lt;P&gt;l_value-text = 'September'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'J'.&lt;/P&gt;&lt;P&gt;l_value-text = 'October'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'K'.&lt;/P&gt;&lt;P&gt;l_value-text = 'November'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_value-key = 'L'.&lt;/P&gt;&lt;P&gt;l_value-text = 'December'.&lt;/P&gt;&lt;P&gt;APPEND l_value TO li_list.&lt;/P&gt;&lt;P&gt;CLEAR l_value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;l_name = 'P_TEST'.&lt;/P&gt;&lt;P&gt;p_test = 'A'. "this is to set the default value of the list box.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'VRM_SET_VALUES'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;id = l_name&lt;/P&gt;&lt;P&gt;values = li_list&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;id_illegal_name = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;*MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;*WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " f4_value_request&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kumar Bandanadham&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:43:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855164#M1320411</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:43:59Z</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/5855165#M1320412</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;    i would like to add a little more to what sneha mentioned &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt; return_tab   = gt_certificateid_returned&lt;/P&gt;&lt;P&gt; &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 EQ 0.&lt;/P&gt;&lt;P&gt;    IF NOT gt_certificateid_returned[] IS INITIAL.&lt;/P&gt;&lt;P&gt;      READ TABLE gt_certificateid_returned INTO gs_certificateid_returned INDEX 1.&lt;/P&gt;&lt;P&gt;      READ TABLE  itab_certificate into fs_certificate with key gs_certicateid_returned-certificatename. " So now fs_certificate will have name as well as id . so now save the id where ever you want. &lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:44:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855165#M1320412</guid>
      <dc:creator>viquar_iqbal</dc:creator>
      <dc:date>2009-06-22T06:44:49Z</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/5855166#M1320413</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello SANDEEEP ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the above post is correct . i want the same requirment .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write : -&lt;/P&gt;&lt;P&gt;data : get_selected_return_code  TYPE TABLE OF  ddshretval WITH HEADER LINE.&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    = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;      dynpprog    = progname&lt;/P&gt;&lt;P&gt;      dynpnr      = dynnum&lt;/P&gt;&lt;P&gt;      value_org   = 'S'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      value_tab   = itab_Certificate&lt;/P&gt;&lt;P&gt;      return_tab  = get_selected_return_code  .&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno&lt;/P&gt;&lt;P&gt;            WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; IF NOT get_selected_return_code [] IS INITIAL.&lt;/P&gt;&lt;P&gt;      READ TABLE get_selected_return_code  INTO get_selected_return_code  INDEX 1.&lt;/P&gt;&lt;P&gt;       p_certificateid = get_selected_return_code -fieldval.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;your CERTIFICATEID in the Fieldval. u can see in the debug mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;vandana.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:54:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855166#M1320413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:54:46Z</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/5855167#M1320414</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;Then pass the certificate name to your FM.. And the internal table what is returned send your certificate id...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
  READ TABLE gt_certificateid_returned INTO gs_certificateid_returned INDEX 1.
      p_matnr = gs_certificateid_returned-fieldval.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 06:57:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855167#M1320414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T06:57:29Z</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/5855168#M1320415</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Vendana,&lt;/P&gt;&lt;P&gt;                    I write code what you said but get_selected_return_code in that fields not coming any value .I am mention my code also kindly find wher am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: WA_Certificate type type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : get_selected_return_code TYPE TABLE OF ddshretval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;return_tab = get_selected_return_code&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;IF NOT get_selected_return_code[] IS INITIAL.&lt;/P&gt;&lt;P&gt;READ TABLE get_selected_return_code INTO get_selected_return_code INDEX 1.&lt;/P&gt;&lt;P&gt;P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 07:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855168#M1320415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T07:39:04Z</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/5855169#M1320416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Viquar, &lt;/P&gt;&lt;P&gt;                    I write code what you said but get_selected_return_code in that fields not coming any value .I am mention my code also kindly find wher am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: WA_Certificate type type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : get_selected_return_code TYPE TABLE OF ddshretval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;return_tab = get_selected_return_code&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;IF NOT get_selected_return_code[] IS INITIAL.&lt;/P&gt;&lt;P&gt;READ TABLE get_selected_return_code INTO get_selected_return_code INDEX 1.&lt;/P&gt;&lt;P&gt;P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 07:39:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855169#M1320416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T07:39:58Z</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/5855170#M1320417</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Sneha,&lt;/P&gt;&lt;P&gt;                    I write code what you said but get_selected_return_code in that fields not coming any value .I am mention my code also kindly find wher am doing wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: WA_Certificate type type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : get_selected_return_code TYPE TABLE OF ddshretval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;return_tab = get_selected_return_code&lt;/P&gt;&lt;P&gt;&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;&lt;/P&gt;&lt;P&gt;IF NOT get_selected_return_code[] IS INITIAL.&lt;/P&gt;&lt;P&gt;READ TABLE get_selected_return_code INTO get_selected_return_code INDEX 1.&lt;/P&gt;&lt;P&gt;P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 07:40:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855170#M1320417</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T07:40:38Z</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/5855171#M1320418</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;&lt;/P&gt;&lt;P&gt;You have to write like this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT
 INTO CORRESPONDING FIELDS OF TABLE itab_Certificate.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING
retfield = 'ZHR_T_CERTIFICAT-CERTIFICATENAME' &amp;lt;------Mention the table name also..
dynpprog     = Sy-repid
 dynpnr       = sy-dynnr
value_org = 'S'

TABLES
value_tab = itab_Certificate
return_tab = get_selected_return_code

EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.

IF NOT get_selected_return_code[] IS INITIAL.
READ TABLE get_selected_return_code INTO get_selected_return_code INDEX 1.
P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.
ENDIF.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this will solve your problem..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more thing which you can try is Instaed of using 'INTO CORRSPONDING FIELDS' try declaring a 'ITAB_CERTIFICATE'  with only those two fields which you need..&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT
 INTO TABLE itab_Certificate.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: sneha singhania on Jun 22, 2009 1:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 07:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855171#M1320418</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T07:47:11Z</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/5855172#M1320419</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; check the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;=============&lt;/P&gt;&lt;P&gt; if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt; read table itab_certificate into wa_certificate with key certifcatename = listbox-value.&lt;/P&gt;&lt;P&gt;  if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;       update ztable from wa_certificate set certiifcateid = wa_certificate-certificateid.    &lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;==============&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sateesh.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 08:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855172#M1320419</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T08:09:17Z</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/5855173#M1320420</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sneha,&lt;/P&gt;&lt;P&gt;                 If am using the table name with fields it's giving the short dump.&lt;/P&gt;&lt;P&gt;And if am am using onlt the field name CERTIFICATENAME that case get_selected_return_code dosn't contain any valueee.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 08:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855173#M1320420</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T08:54:08Z</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/5855174#M1320421</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check if you have declared the table : &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tables: ZHR_T_CERTIFICAT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also as i hve suggested earlier can you please create the 'ITAB_CERTIFIACTE' in such a way that it holds only the fields you require to be selected from this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 08:57:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855174#M1320421</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T08:57: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/5855175#M1320422</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sandeep,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Since, you want to save 'Certificate ID' please try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING
retfield = 'CERTIFICATENAME'      &amp;lt;------ Give the field name as 'Ceritificate ID'
value_org = 'S'

TABLES
value_tab = itab_Certificate
returned_tab = gt_returned_code

EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 09:16:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855175#M1320422</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T09:16:55Z</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/5855176#M1320423</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sneha,&lt;/P&gt;&lt;P&gt;                  I am sending my whole code am doing the same as you told kindly  help me to finding the Error .Types: BEGIN OF type_Certificate,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CERTIFICATEID type ZHR_T_CERTIFICAT-CERTIFICATEID,&lt;/P&gt;&lt;P&gt; CERTIFICATENAME type ZHR_T_CERTIFICAT-CERTIFICATENAME,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    END OF  type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA itab_Certificate TYPE STANDARD TABLE&lt;/P&gt;&lt;P&gt;     OF type_Certificate WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: WA_Certificate type type_Certificate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : get_selected_return_code TYPE TABLE OF ddshretval WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;Data : wa_get_selected_return_code type ddshretval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO  TABLE itab_Certificate.&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;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;retfield = 'CERTIFICATENAME'&lt;/P&gt;&lt;P&gt;dynpprog     = Sy-repid&lt;/P&gt;&lt;P&gt; dynpnr       = sy-dynnr&lt;/P&gt;&lt;P&gt;value_org = 'S'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;value_tab = itab_Certificate&lt;/P&gt;&lt;P&gt;return_tab = get_selected_return_code&lt;/P&gt;&lt;P&gt;&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 EQ 0.&lt;/P&gt;&lt;P&gt;IF NOT get_selected_return_code[] IS INITIAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ TABLE get_selected_return_code INTO wa_get_selected_return_code INDEX 1.&lt;/P&gt;&lt;P&gt;P9005-YYYEDU_DEATIL = get_selected_return_code-fieldval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 09:20:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855176#M1320423</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T09:20: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/5855177#M1320424</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;Please try this :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
Types:  BEGIN OF type_Certificate,
        CERTIFICATEID type ZHR_T_CERTIFICAT-CERTIFICATEID,
        CERTIFICATENAME type ZHR_T_CERTIFICAT-CERTIFICATENAME,
        END OF type_Certificate.

DATA : itab_Certificate TYPE STANDARD TABLE OF type_Certificate,   
            WA_Certificate   type type_Certificate,
          get_selected_return_code TYPE standard TABLE OF ddshretval,
          wa_get_selected_return_code type ddshretval.

Select CERTIFICATEID CERTIFICATENAME from ZHR_T_CERTIFICAT INTO TABLE itab_Certificate.

CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'

EXPORTING
retfield = 'CERTIFICATEID' &amp;lt;----- Since, you want to display Certificate ID change this ..
dynpprog = Sy-repid
dynpnr = sy-dynnr
value_org = 'S'

TABLES
value_tab = itab_Certificate
return_tab = get_selected_return_code

EXCEPTIONS
parameter_error = 1
no_values_found = 2
OTHERS = 3.

IF sy-subrc EQ 0.
IF NOT get_selected_return_code[] IS INITIAL.

READ TABLE get_selected_return_code INTO wa_get_selected_return_code INDEX 1.
P9005-YYYEDU_DEATIL = wa_get_selected_return_code-fieldval.
ENDIF.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think this should solve your problem.&lt;/P&gt;&lt;P&gt;Moreover, your declaration is also wrong. Why are you declaring work area for the internal table again, if you are declaring it with header line. Either Use as i have decalred or simply declare it with header line.&lt;/P&gt;&lt;P&gt;Let me know if it still persists..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 09:26:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855177#M1320424</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T09:26:48Z</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/5855178#M1320425</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Snehaa,&lt;/P&gt;&lt;P&gt;               But now in my list box ID and Name both coming i want to show in list box only name and in the background corresponding id want to save ,got it Kindly help me te resolve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 09:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855178#M1320425</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T09:29:34Z</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/5855179#M1320426</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;I don't think this is possible.. Because whtever you send in 'value_tab' all those fields and its value will be displayed in the F4 help... And depending on that only you can save the value in the parameter.. You can decide which field value you want to display out of the entire list in the F4 help.. But, to display one field and to display another value is not possible.. I think you can go with the result you are getting now..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;anyways here's a demo program:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DEMO_DYNPRO_F4_HELP_MODULE..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check if it helps you..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Jun 2009 09:49:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/f4if-int-table-value-request/m-p/5855179#M1320426</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-06-22T09:49:03Z</dc:date>
    </item>
  </channel>
</rss>

