<?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: Program to view tables in single view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690691#M2017623</link>
    <description>&lt;P&gt;Use any search-help such as VIEWMAINT (as SM30) to search for table/view&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If Hana database - use class &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=cl_salv_gui_table_ida"&gt;cl_salv_gui_table_ida&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;Else, &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect_into_target.htm"&gt;dynamic select/data&lt;/A&gt; (or FM &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=VIEW_GET_DATA"&gt;VIEW_GET_DATA&lt;/A&gt; for maintenance views) and use class &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=cl_salv_table"&gt;cl_salv_table&lt;/A&gt; on result table.&lt;/LI&gt;&lt;/UL&gt;</description>
    <pubDate>Mon, 06 Mar 2023 11:50:33 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2023-03-06T11:50:33Z</dc:date>
    <item>
      <title>Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690688#M2017620</link>
      <description>&lt;P&gt;hi experts,&lt;/P&gt;
  &lt;P&gt;can u guys helping with something, i have a task about abap. i told to make something like se16n, like a simple one i just wanted the program to search a table and display it. thank you in advance&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 08:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690688#M2017620</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-06T08:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690689#M2017621</link>
      <description>&lt;P&gt;Welcome to the SAP Community. Thank you for visiting us to get answers to your questions.&lt;/P&gt;&lt;P&gt;Since you're asking a question here for the first time, I'd like to offer some friendly advice on how to get the most out of your community membership and experience.&lt;/P&gt;&lt;P&gt;First, please see &lt;A rel="noopener noreferrer" href="https://community.sap.com/resources/questions-and-answers" target="_blank"&gt;https://community.sap.com/resources/questions-and-answers&lt;/A&gt;, as this resource page provides tips for preparing questions that draw responses from our members. Second, feel free to take our Q&amp;amp;A tutorial at &lt;A rel="noopener noreferrer" href="https://developers.sap.com/tutorials/community-qa.html" target="_blank"&gt;https://developers.sap.com/tutorials/community-qa.html&lt;/A&gt;, as that will help you when submitting questions to the community.&lt;/P&gt;&lt;P&gt;I also recommend that you include a profile picture. By personalizing your profile, you encourage readers to respond: &lt;A rel="noopener noreferrer" href="https://developers.sap.com/tutorials/community-profile.html" target="_blank"&gt;https://developers.sap.com/tutorials/community-profile.html&lt;/A&gt;.&lt;/P&gt;&lt;P&gt;Now for some specific suggestions on how you might improve your question:&lt;/P&gt;&lt;P&gt;* Outline what steps you took to find answers (and why they weren't helpful) -- so members don't make suggestions that you've already tried.&lt;/P&gt;&lt;P&gt;* Share screenshots of what you've seen/done (if possible), as images always helps our members better understand your problem.&lt;/P&gt;&lt;P&gt;* Make sure you've applied the appropriate tags -- because if you don't apply the correct tags, the right experts won't see your question to answer it.&lt;/P&gt;&lt;P&gt;Should you wish, you can revise your question by selecting Actions, then Edit. &lt;/P&gt;&lt;P&gt;The more details you provide (in questions tagged correctly), the more likely it is that members will be able to respond. As it stands, I don't know if there is enough information here for members to understand your issue. So please consider revising your question because I'd really like to see you get a solution to your problem!&lt;/P&gt;&lt;P&gt;I hope you find this advice useful, and we're happy to have you as part of SAP Community!&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 08:31:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690689#M2017621</guid>
      <dc:creator>moshenaveh</dc:creator>
      <dc:date>2023-03-06T08:31:54Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690690#M2017622</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;here is a rather simple base for doing this:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;program Z_SHOW_TABLE.&lt;BR /&gt;data: f4Table like dd02l-tabname.&lt;BR /&gt;parameters: pTable like f4Table obligatory.&lt;BR /&gt;at selection-screen.&lt;BR /&gt;  call function 'VIEW_AUTHORITY_CHECK'&lt;BR /&gt;    exporting&lt;BR /&gt;      view_action                    = 'S'&lt;BR /&gt;      view_name                      = pTable&lt;BR /&gt;      no_warning_for_clientindep     = 'X'&lt;BR /&gt;    EXCEPTIONS&lt;BR /&gt;      invalid_action                 = 1&lt;BR /&gt;      no_authority                   = 2&lt;BR /&gt;      no_clientindependent_authority = 3&lt;BR /&gt;      table_not_found                = 4&lt;BR /&gt;      no_linedependent_authority     = 5&lt;BR /&gt;      OTHERS                         = 6.&lt;BR /&gt;  case sy-subrc.&lt;BR /&gt;    " Implement dealing with possible returncodes here.&lt;BR /&gt;    when 2.&lt;BR /&gt;      message e316(AQ) with pTable.&lt;BR /&gt;    " ...&lt;BR /&gt;  endcase.&lt;BR /&gt;start-of-selection.&lt;BR /&gt;  cl_salv_gui_table_ida=&amp;gt;create( iv_table_name = pTable )-&amp;gt;fullscreen( )-&amp;gt;display( ).&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 10:21:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690690#M2017622</guid>
      <dc:creator>jmodaal</dc:creator>
      <dc:date>2023-03-06T10:21:58Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690691#M2017623</link>
      <description>&lt;P&gt;Use any search-help such as VIEWMAINT (as SM30) to search for table/view&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;If Hana database - use class &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=cl_salv_gui_table_ida"&gt;cl_salv_gui_table_ida&lt;/A&gt;.&lt;/LI&gt;&lt;LI&gt;Else, &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect_into_target.htm"&gt;dynamic select/data&lt;/A&gt; (or FM &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=VIEW_GET_DATA"&gt;VIEW_GET_DATA&lt;/A&gt; for maintenance views) and use class &lt;A href="https://launchpad.support.sap.com/#/solutions/scnforums/?q=cl_salv_table"&gt;cl_salv_table&lt;/A&gt; on result table.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Mon, 06 Mar 2023 11:50:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690691#M2017623</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-03-06T11:50:33Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690692#M2017624</link>
      <description>&lt;P&gt;i could use a complete sample program if that's okay.&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 22:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690692#M2017624</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-06T22:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690693#M2017625</link>
      <description>&lt;P&gt;there's an error Type "CL_SALV_GUI_TABLE_IDA" is unknown		&lt;/P&gt;&lt;P&gt;im new to sap abap so being honest, i really dont know what to do. appriciate ur help&lt;/P&gt;</description>
      <pubDate>Mon, 06 Mar 2023 22:38:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690693#M2017625</guid>
      <dc:creator>former_member844813</dc:creator>
      <dc:date>2023-03-06T22:38:29Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690694#M2017626</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;which version / release is your SAP system?&lt;/P&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 08:07:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690694#M2017626</guid>
      <dc:creator>jmodaal</dc:creator>
      <dc:date>2023-03-07T08:07:12Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690695#M2017627</link>
      <description>&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;instead of the CL_SALV_GUI_TABLE_IDA you can give this a try: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;" ... same as in source code above&lt;BR /&gt;start-of-selection.&lt;BR /&gt;  " Create internal table of the right type.&lt;BR /&gt;  data: structDesc type ref to cl_abap_typedescr,&lt;BR /&gt;        salvTable  type ref to cl_salv_table,&lt;BR /&gt;        recordsTable type ref to data.&lt;BR /&gt;  cl_abap_structdescr=&amp;gt;describe_by_name(&lt;BR /&gt;      exporting p_name = pTable&lt;BR /&gt;      receiving p_descr_ref = structDesc&lt;BR /&gt;      exceptions type_not_found = 1 others = 2 ).&lt;BR /&gt;  if sy-subrc &amp;lt;&amp;gt; 0.&lt;BR /&gt;    message |Table { pTable } not found| type 'I'.&lt;BR /&gt;    exit.&lt;BR /&gt;  endif.&lt;BR /&gt;  create data recordsTable type standard table of (pTable).&lt;BR /&gt;  field-symbols &amp;lt;table&amp;gt; type any table.&lt;BR /&gt;  assign recordsTable-&amp;gt;* to &amp;lt;table&amp;gt;.&lt;BR /&gt;  " Get the data from the table.&lt;BR /&gt;  select * from (pTable) into table &amp;lt;table&amp;gt;.&lt;BR /&gt;  try.&lt;BR /&gt;    cl_salv_table=&amp;gt;factory(&lt;BR /&gt;        importing r_salv_table = salvTable&lt;BR /&gt;        changing t_table = &amp;lt;table&amp;gt; ).&lt;BR /&gt;     salvTable-&amp;gt;get_functions( )-&amp;gt;set_all( abap_true ).&lt;BR /&gt;     salvTable-&amp;gt;get_display_settings( )-&amp;gt;set_striped_pattern( cl_salv_display_settings=&amp;gt;true ).&lt;BR /&gt;     salvTable-&amp;gt;display( ).&lt;BR /&gt;  catch cx_salv_msg into data(salvExcMsg).&lt;BR /&gt;    message salvExcMsg-&amp;gt;get_text( ) type 'E'.&lt;BR /&gt;  endtry.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Kind regards&lt;/P&gt;&lt;P&gt;Jan&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 08:37:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690695#M2017627</guid>
      <dc:creator>jmodaal</dc:creator>
      <dc:date>2023-03-07T08:37:27Z</dc:date>
    </item>
    <item>
      <title>Re: Program to view tables in single view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690696#M2017628</link>
      <description>&lt;P&gt;Look at online documentation for code samples, example &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abencreate_tabular_data_abexa.htm#@@ITOC@@ABENCREATE_TABULAR_DATA_ABEXA_1"&gt;Creating Tabular Data Objects&lt;/A&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 07 Mar 2023 10:44:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/program-to-view-tables-in-single-view/m-p/12690696#M2017628</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2023-03-07T10:44:32Z</dc:date>
    </item>
  </channel>
</rss>

