<?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: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400484#M1546823</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu&lt;/P&gt;&lt;P&gt;I tried but recordpos give coloumn number and not the line no.&lt;/P&gt;&lt;P&gt;I have work around solution. Try following code. First coloumn is sr no. You can read your entry based on line no.&lt;/P&gt;&lt;P&gt;Then can play around how to hide this particular column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_matnr,&lt;/P&gt;&lt;P&gt;        lineno type CSCP_COMP_LVL,&lt;/P&gt;&lt;P&gt;        matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;        spart type mara-spart,&lt;/P&gt;&lt;P&gt;        mtart type mara-mtart,&lt;/P&gt;&lt;P&gt;      end of ty_matnr.&lt;/P&gt;&lt;P&gt;data: t_mara type standard table of ty_matnr,&lt;/P&gt;&lt;P&gt;wa_mara type  ty_matnr,&lt;/P&gt;&lt;P&gt;RETURN_TAB	type standard table of DDSHRETVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr spart mtart from mara into CORRESPONDING FIELDS OF table&lt;/P&gt;&lt;P&gt;t_mara where spart = 'PM'.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt; loop at t_mara into wa_mara.&lt;/P&gt;&lt;P&gt; wa_mara-lineno = SY-TABIX.&lt;/P&gt;&lt;P&gt; modify t_mara from wa_mara index sy-tabix transporting lineno .&lt;/P&gt;&lt;P&gt; endloop.&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;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         = 'WA_MARA'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETFIELD               = 'LINENO'&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-REPID&lt;/P&gt;&lt;P&gt;   DYNPNR                 = sy-dynnr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPROFIELD            = ' '&lt;/P&gt;&lt;/LI&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        = 'X'&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;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB              = t_mara&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              = fiELD_TAB&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   RETURN_TAB             = RETURN_TAB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        = DYNPFLD_MAPPING	&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_ERROR        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 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>Thu, 14 Oct 2010 07:15:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-10-14T07:15:20Z</dc:date>
    <item>
      <title>Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400475#M1546814</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; How to return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example : if the row has 3 columns then after selecting the particular row, the RETURN_TAB internal table should contain all the three column values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 04:54:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400475#M1546814</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T04:54:26Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400476#M1546815</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Raghu&lt;/P&gt;&lt;P&gt;I assume you are getting a single value in return tab. Make sure that this filed is key filed of your F4 help internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Make use of this field value to read internal table, you will get the remaining values.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:02:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400476#M1546815</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:02:22Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400477#M1546816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have two key fields. thats why i need to column values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:05:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400477#M1546816</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:05:21Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400478#M1546817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu&lt;/P&gt;&lt;P&gt;You can make use of RECORDPOS field in return table, which gives line number of the internal table which is selected.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400478#M1546817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400479#M1546818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Even I though the same. but it always returning 1. I dont know where i made the mistake. Can you send the sample code you used?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400479#M1546818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400480#M1546819</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;   Try the following...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : it_fields like help_value occurs 1 with header line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: begin of w_vbap,&lt;/P&gt;&lt;P&gt;        vbeln      like vbap-vbeln,     &lt;/P&gt;&lt;P&gt;        posnr      like vbap-posnr,    &lt;/P&gt;&lt;P&gt;        werks      like vbap-werks,   &lt;/P&gt;&lt;P&gt;      end of w_vbap.&lt;/P&gt;&lt;P&gt;data: i_vbap   like w_vbap   occurs 0 with header line,&lt;/P&gt;&lt;P&gt;         w_fields type help_value,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      i_dfies type table of dfies,&lt;/P&gt;&lt;P&gt;      i_return_tab type table of ddshretval with header line,&lt;/P&gt;&lt;P&gt;      i_field  type dfies.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select vbeln posnr werks&lt;/P&gt;&lt;P&gt;      from vbap into table i_vbap up to 5 rows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;   sort i_vbap by vbeln.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear it_fields[] , it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_fields-tabname = c_vbap.&lt;/P&gt;&lt;P&gt;  it_fields-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;  it_fields-selectflag = c_on.&lt;/P&gt;&lt;P&gt;  append it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_fields-tabname = c_vbap.&lt;/P&gt;&lt;P&gt;  it_fields-fieldname = 'POSNR'.&lt;/P&gt;&lt;P&gt;  it_fields-selectflag = space.&lt;/P&gt;&lt;P&gt;  append it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_fields-tabname = c_vbap.&lt;/P&gt;&lt;P&gt;  it_fields-fieldname = 'WERKS'.&lt;/P&gt;&lt;P&gt;  it_fields-selectflag = space.&lt;/P&gt;&lt;P&gt;  append it_fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at it_fields into w_fields.&lt;/P&gt;&lt;P&gt;    i_field-tabname   = w_fields-tabname.&lt;/P&gt;&lt;P&gt;    i_field-fieldname = w_fields-fieldname.&lt;/P&gt;&lt;P&gt;    i_field-keyflag   = w_fields-selectflag.&lt;/P&gt;&lt;P&gt;    append i_field to i_dfies.&lt;/P&gt;&lt;P&gt;  endloop.&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               = 'VBELN'&lt;/P&gt;&lt;P&gt;     window_title           = 'Select'&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      value_tab              = i_vbap&lt;/P&gt;&lt;P&gt;      field_tab                = i_dfies&lt;/P&gt;&lt;P&gt;      return_tab             = i_return_tab&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;  read table i_return_tab into w_return_tab index 1.&lt;/P&gt;&lt;P&gt;  if sy-subrc = 0.&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;Regards,&lt;/P&gt;&lt;P&gt;Srini.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:35:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400480#M1546819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:35:17Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400481#M1546820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry not working&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 05:44:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400481#M1546820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T05:44:15Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400482#M1546821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Raghu ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is piece of code in working condition .&lt;/P&gt;&lt;P&gt;try to find out what is issue in your code.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;    SELECT matnr matkl&lt;/P&gt;&lt;P&gt;      FROM mara&lt;/P&gt;&lt;P&gt;      INTO TABLE it_matkl&lt;/P&gt;&lt;P&gt;      FOR ALL ENTRIES IN it_matnr&lt;/P&gt;&lt;P&gt;      WHERE matnr = it_matnr-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    IF it_matkl IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;      SELECT matkl wgbez&lt;/P&gt;&lt;P&gt;        FROM t023t&lt;/P&gt;&lt;P&gt;        INTO TABLE it_desc&lt;/P&gt;&lt;P&gt;        FOR ALL ENTRIES IN it_matkl&lt;/P&gt;&lt;P&gt;        WHERE matkl = it_matkl-matkl.&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;  LOOP AT it_mat INTO wa_mat.&lt;/P&gt;&lt;P&gt;    READ TABLE it_matkl INTO wa_matkl WITH KEY matnr = wa_mat-matnr.&lt;/P&gt;&lt;P&gt;    IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      MOVE wa_matkl-matkl TO wa_mat-matkl.&lt;/P&gt;&lt;P&gt;      MODIFY it_mat FROM wa_mat TRANSPORTING matkl.&lt;/P&gt;&lt;P&gt;      READ TABLE it_desc INTO wa_desc WITH KEY matkl = wa_mat-matkl.&lt;/P&gt;&lt;P&gt;      MOVE wa_desc-wgbez TO wa_mat-wgbez.&lt;/P&gt;&lt;P&gt;      MODIFY it_mat FROM wa_mat TRANSPORTING wgbez.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SORT it_mat ASCENDING BY matnr.&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     = 'MATNR'&lt;/P&gt;&lt;P&gt;      dynpprog     = sy-repid&lt;/P&gt;&lt;P&gt;      dynpnr       = sy-dynnr&lt;/P&gt;&lt;P&gt;      window_title = text-006     "'Article Number'&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_mat[]&lt;/P&gt;&lt;P&gt;      return_tab   = it_f4[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_f4.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ TABLE it_f4 INTO wa_f4 INDEX 1.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    so_matnr-low = wa_f4-fieldval.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLEAR: wa_f4,it_f4[].&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 06:17:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400482#M1546821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T06:17:17Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400483#M1546822</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 just want to know whether the RETURN_TAB internal table will contain all the column values? or it will contain only material number? I want to get the all the column values of the internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 06:44:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400483#M1546822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T06:44:19Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400484#M1546823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu&lt;/P&gt;&lt;P&gt;I tried but recordpos give coloumn number and not the line no.&lt;/P&gt;&lt;P&gt;I have work around solution. Try following code. First coloumn is sr no. You can read your entry based on line no.&lt;/P&gt;&lt;P&gt;Then can play around how to hide this particular column.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of ty_matnr,&lt;/P&gt;&lt;P&gt;        lineno type CSCP_COMP_LVL,&lt;/P&gt;&lt;P&gt;        matnr type mara-matnr,&lt;/P&gt;&lt;P&gt;        spart type mara-spart,&lt;/P&gt;&lt;P&gt;        mtart type mara-mtart,&lt;/P&gt;&lt;P&gt;      end of ty_matnr.&lt;/P&gt;&lt;P&gt;data: t_mara type standard table of ty_matnr,&lt;/P&gt;&lt;P&gt;wa_mara type  ty_matnr,&lt;/P&gt;&lt;P&gt;RETURN_TAB	type standard table of DDSHRETVAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select matnr spart mtart from mara into CORRESPONDING FIELDS OF table&lt;/P&gt;&lt;P&gt;t_mara where spart = 'PM'.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt; loop at t_mara into wa_mara.&lt;/P&gt;&lt;P&gt; wa_mara-lineno = SY-TABIX.&lt;/P&gt;&lt;P&gt; modify t_mara from wa_mara index sy-tabix transporting lineno .&lt;/P&gt;&lt;P&gt; endloop.&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;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         = 'WA_MARA'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    RETFIELD               = 'LINENO'&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-REPID&lt;/P&gt;&lt;P&gt;   DYNPNR                 = sy-dynnr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPROFIELD            = ' '&lt;/P&gt;&lt;/LI&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        = 'X'&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;/UL&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    VALUE_TAB              = t_mara&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  FIELD_TAB              = fiELD_TAB&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   RETURN_TAB             = RETURN_TAB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DYNPFLD_MAPPING        = DYNPFLD_MAPPING	&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PARAMETER_ERROR        = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_VALUES_FOUND        = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF SY-SUBRC = 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>Thu, 14 Oct 2010 07:15:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400484#M1546823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T07:15:20Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400485#M1546824</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Raghu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will only give u fieldvalue that means MATNR value (in my example).&lt;/P&gt;&lt;P&gt;You wont get the column value .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Gaurav.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 08:48:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400485#M1546824</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T08:48:59Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400486#M1546825</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;For example your internal table have 4 columns, then the return internal table should contain all the four 4 column values&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:33:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400486#M1546825</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:33:41Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400487#M1546826</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you tried the code given by me ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:41:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400487#M1546826</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:41:58Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400488#M1546827</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.. its not working.. sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400488#M1546827</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400489#M1546828</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;Can you please elaborate what is not working ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:56:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400489#M1546828</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:56:44Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400490#M1546829</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.. its not working.. sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400490#M1546829</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400491#M1546830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.. its not working.. sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 09:58:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400491#M1546830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T09:58:58Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400492#M1546831</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu&lt;/P&gt;&lt;P&gt;Its not working is ok.. But if you can elaboarate the exact issue in the given code we can help you out..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 10:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400492#M1546831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T10:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400493#M1546832</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.. its not working.. sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 10:56:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400493#M1546832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T10:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Return all the column values using the F4IF_INT_TABLE_VALUE_REQUEST</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400494#M1546833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes.. its not working.. sorry&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Oct 2010 11:24:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/return-all-the-column-values-using-the-f4if-int-table-value-request/m-p/7400494#M1546833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-10-14T11:24:50Z</dc:date>
    </item>
  </channel>
</rss>

