<?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: Function modules for Transaction SE16  for any table whole data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407759#M1407259</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use : RFC_READ_TABLE or GET_TABLE_RFC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 20 Nov 2009 13:13:21 GMT</pubDate>
    <dc:creator>former_member156446</dc:creator>
    <dc:date>2009-11-20T13:13:21Z</dc:date>
    <item>
      <title>Function modules for Transaction SE16  for any table whole data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407757#M1407257</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need to pass report or function module input as table name:LFA1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I Need to get all the data with fileds for those table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;say : i/p &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;paramters: s_tabname  like (tabname).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here s_tabname ='lfa1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;output :all the fileds details with  whole data like se16 or se11 transaction for table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;is there any function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;nag&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 11:30:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407757#M1407257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T11:30:47Z</dc:date>
    </item>
    <item>
      <title>Re: Function modules for Transaction SE16  for any table whole data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407758#M1407258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the FM &lt;STRONG&gt;RFC_GET_TABLE_ENTRIES&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vikranth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 11:39:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407758#M1407258</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-20T11:39:36Z</dc:date>
    </item>
    <item>
      <title>Re: Function modules for Transaction SE16  for any table whole data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407759#M1407259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can also use : RFC_READ_TABLE or GET_TABLE_RFC&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 13:13:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407759#M1407259</guid>
      <dc:creator>former_member156446</dc:creator>
      <dc:date>2009-11-20T13:13:21Z</dc:date>
    </item>
    <item>
      <title>Re: Function modules for Transaction SE16  for any table whole data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407760#M1407260</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;you can create this easily using runtime creation of objects and SALV for display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Although I would never do something like this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  zzzz.
DATA:
  gr_itab  TYPE REF TO data,
  gr_salv  TYPE REF TO cl_salv_table.

  PARAMETERS:
    p_table TYPE tabname.
  FIELD-SYMBOLS:
    &amp;lt;tab&amp;gt; TYPE table.

START-OF-SELECTION.
  create data gr_itab type table of (p_table).
  ASSIGN gr_itab-&amp;gt;* TO &amp;lt;tab&amp;gt;.
  select *
    from (p_table)
    into table &amp;lt;tab&amp;gt;.
  TRY.
      cl_salv_table=&amp;gt;factory(
        IMPORTING
          r_salv_table = gr_salv
        CHANGING
          t_table      = &amp;lt;tab&amp;gt; ).
    CATCH cx_salv_msg.                                  "#EC NO_HANDLER
  ENDTRY.

  DATA:
    lr_functions TYPE REF TO cl_salv_functions_list.

  lr_functions = gr_salv-&amp;gt;get_functions( ).
  lr_functions-&amp;gt;set_all( abap_true ).

  gr_salv-&amp;gt;display( ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You won't find anything simpler.&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;Clemens&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 20 Nov 2009 14:07:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/function-modules-for-transaction-se16-for-any-table-whole-data/m-p/6407760#M1407260</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2009-11-20T14:07:29Z</dc:date>
    </item>
  </channel>
</rss>

