<?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 Fetching values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965356#M947078</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table control in module pool program. In that i need two different field (2nd and 4th column) values not a field names from the particular row. Can any one tell me how to fetch those values from the table control.&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;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 15 Jun 2008 10:14:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-15T10:14:23Z</dc:date>
    <item>
      <title>Fetching values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965356#M947078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a table control in module pool program. In that i need two different field (2nd and 4th column) values not a field names from the particular row. Can any one tell me how to fetch those values from the table control.&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;Harish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Jun 2008 10:14:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965356#M947078</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-15T10:14:23Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965357#M947079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;    Make use of FM &lt;STRONG&gt;DYNP_VALUES_READ&lt;/STRONG&gt; in POV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :it_dynpread type standard table of dynpread,&lt;/P&gt;&lt;P&gt;      wa_dynpread type dynpread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR wa_dynpread.&lt;/P&gt;&lt;P&gt;  wa_dynpread-fieldname = 'IT_TABLE_CONTROL_1-TYPE'.&lt;/P&gt;&lt;P&gt;  APPEND wa_dynpread TO it_dynpread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Read the Type&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'DYNP_VALUES_READ'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      dyname                               = sy-repid&lt;/P&gt;&lt;P&gt;      dynumb                               = sy-dynnr&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  TRANSLATE_TO_UPPER                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;   request                              = 'A'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PERFORM_CONVERSION_EXITS             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PERFORM_INPUT_CONVERSION             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  DETERMINE_LOOP_INDEX                 = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_CURRENT_SCREEN       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_MAIN_SCREEN          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_IN_STACKED_SCREEN       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  START_SEARCH_ON_SCR_STACKPOS         = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEARCH_OWN_SUBSCREENS_FIRST          = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  SEARCHPATH_OF_SUBSCREEN_AREAS        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      dynpfields                           = it_dynpread&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   invalid_abapworkarea                 = 1&lt;/P&gt;&lt;P&gt;   invalid_dynprofield                  = 2&lt;/P&gt;&lt;P&gt;   invalid_dynproname                   = 3&lt;/P&gt;&lt;P&gt;   invalid_dynpronummer                 = 4&lt;/P&gt;&lt;P&gt;   invalid_request                      = 5&lt;/P&gt;&lt;P&gt;   no_fielddescription                  = 6&lt;/P&gt;&lt;P&gt;   invalid_parameter                    = 7&lt;/P&gt;&lt;P&gt;   undefind_error                       = 8&lt;/P&gt;&lt;P&gt;   double_conversion                    = 9&lt;/P&gt;&lt;P&gt;   stepl_not_found                      = 10&lt;/P&gt;&lt;P&gt;   OTHERS                               = 11&lt;/P&gt;&lt;P&gt;            .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 07:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965357#M947079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T07:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965358#M947080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just treat ur table control as an internal table.&lt;/P&gt;&lt;P&gt;you can put LOOP and ENDLOOP statement to get values of fields.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Jun 2008 08:58:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965358#M947080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-16T08:58:04Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965359#M947081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vishal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Through this FM I can get field names only not a field values.... But I need particular field values of the table control (3rowu2019s 2nd column and 4th column values). But that FM retrieve the entire field names not only table control field names, for example it retrieve also the label, text box, and radio button names and so on..... Can you give me the idea to get the particular column values of the particular row.&lt;/P&gt;&lt;P&gt;&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;Harish.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 05:28:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965359#M947081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T05:28:03Z</dc:date>
    </item>
    <item>
      <title>Re: Fetching values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965360#M947082</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hiiiii Harish ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think u want to have the field valu8es of the 2nd and 4rth columns of a selected row ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;onthe table control just have the with selection column check box to be checked in the attributes of the table control ...so that u ll get a selection column on the table control ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;have a same column name in the itab which u declare ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and the entire logic would be same with in the &lt;/P&gt;&lt;P&gt;PAI.&lt;/P&gt;&lt;P&gt;loop...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no when u select the selection column in the table control then the relevant columns of the selected records will reflect as X in the internal table that has been linked with the table control PAI ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;once the itab get refelcted with X of the selected records in the table control ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;read the itab that has X in the selction column ...&lt;/P&gt;&lt;P&gt;  capture the values in the 2nd and 4rth column of the record ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think that will be done and slove ur problem ....&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;&lt;/P&gt;&lt;P&gt;chandu reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jun 2008 08:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/fetching-values/m-p/3965360#M947082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-17T08:10:31Z</dc:date>
    </item>
  </channel>
</rss>

