<?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 DYNAMIC TABLE TO INTERNAL TABLE in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728893#M2020302</link>
    <description>&lt;PRE&gt;&lt;CODE&gt;I need to convert a dynamic table to an internal one for the program to work, I leave the code below&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;I NEED TO CREATE AN INTERNAL TABLE WITH THE VALUES OF THE DYNAMIC ONE CALLED 'tdinamica'&amp;lt;/strong&amp;gt;


PARAMETERS: tablaN TYPE dd02l-tabname.&amp;lt;br&amp;gt;
DATA: btn_ok TYPE sy-ucomm.&amp;lt;br&amp;gt;
DATA tdinamica TYPE REF TO DATA.&amp;lt;br&amp;gt;
field-symbols: &amp;lt;fs&amp;gt;.&amp;lt;br&amp;gt;
*VARIABLES ALV&amp;lt;br&amp;gt;
DATA:&amp;lt;br&amp;gt;
*      it_usuarios type table of ZTBL_EMPLEADO , "DATOS TABLA INTERNA | INFORMACIÓN A MOSTRAR"&amp;lt;br&amp;gt;
  it_fcat      TYPE STANDARD TABLE OF lvc_s_fcat, "CATALOGO DE CAMPOS DE ALV | COLUMNAS DEL ALV"&amp;lt;br&amp;gt;
  vg_container TYPE REF TO cl_gui_custom_container, "OBJETO DEL CONTENEDOR"&amp;lt;br&amp;gt;
  obj_alv_grid TYPE REF TO cl_gui_alv_grid. "MÉTODOS DE LA CLASE ESTANDAR DE ALV TIPO GRID"&amp;lt;br&amp;gt;
CREATE DATA tdinamica TYPE (tablaN).&amp;lt;br&amp;gt;
ASSIGN tdinamica TO &amp;lt;fs&amp;gt;.&amp;lt;br&amp;gt;
*CLASE INTERNA&amp;lt;br&amp;gt;
CLASS cls_alv01 DEFINITION DEFERRED.&amp;lt;br&amp;gt;
DATA: obj_alv_01 TYPE REF TO cls_alv01.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;
SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}.L0S31 {
font-style: italic;
color: #808080;
}.L0S52 {
color: #0000FF;
}.L0S55 {
color: #800080;
}.L0S70 {
color: #808080;I NEED TO CREATE AN INTERNAL TABLE WITH THE VALUES OF THE DYNAMIC ONE CALLED 'tdinamica'&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Thu, 20 Apr 2023 10:44:45 GMT</pubDate>
    <dc:creator>joaquinE</dc:creator>
    <dc:date>2023-04-20T10:44:45Z</dc:date>
    <item>
      <title>DYNAMIC TABLE TO INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728893#M2020302</link>
      <description>&lt;PRE&gt;&lt;CODE&gt;I need to convert a dynamic table to an internal one for the program to work, I leave the code below&amp;lt;br&amp;gt;&amp;lt;strong&amp;gt;I NEED TO CREATE AN INTERNAL TABLE WITH THE VALUES OF THE DYNAMIC ONE CALLED 'tdinamica'&amp;lt;/strong&amp;gt;


PARAMETERS: tablaN TYPE dd02l-tabname.&amp;lt;br&amp;gt;
DATA: btn_ok TYPE sy-ucomm.&amp;lt;br&amp;gt;
DATA tdinamica TYPE REF TO DATA.&amp;lt;br&amp;gt;
field-symbols: &amp;lt;fs&amp;gt;.&amp;lt;br&amp;gt;
*VARIABLES ALV&amp;lt;br&amp;gt;
DATA:&amp;lt;br&amp;gt;
*      it_usuarios type table of ZTBL_EMPLEADO , "DATOS TABLA INTERNA | INFORMACIÓN A MOSTRAR"&amp;lt;br&amp;gt;
  it_fcat      TYPE STANDARD TABLE OF lvc_s_fcat, "CATALOGO DE CAMPOS DE ALV | COLUMNAS DEL ALV"&amp;lt;br&amp;gt;
  vg_container TYPE REF TO cl_gui_custom_container, "OBJETO DEL CONTENEDOR"&amp;lt;br&amp;gt;
  obj_alv_grid TYPE REF TO cl_gui_alv_grid. "MÉTODOS DE LA CLASE ESTANDAR DE ALV TIPO GRID"&amp;lt;br&amp;gt;
CREATE DATA tdinamica TYPE (tablaN).&amp;lt;br&amp;gt;
ASSIGN tdinamica TO &amp;lt;fs&amp;gt;.&amp;lt;br&amp;gt;
*CLASE INTERNA&amp;lt;br&amp;gt;
CLASS cls_alv01 DEFINITION DEFERRED.&amp;lt;br&amp;gt;
DATA: obj_alv_01 TYPE REF TO cls_alv01.&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;&amp;lt;br&amp;gt;
SPAN {
font-family: "Courier New";
font-size: 10pt;
color: #000000;
background: #FFFFFF;
}.L0S31 {
font-style: italic;
color: #808080;
}.L0S52 {
color: #0000FF;
}.L0S55 {
color: #800080;
}.L0S70 {
color: #808080;I NEED TO CREATE AN INTERNAL TABLE WITH THE VALUES OF THE DYNAMIC ONE CALLED 'tdinamica'&amp;lt;br&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Apr 2023 10:44:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728893#M2020302</guid>
      <dc:creator>joaquinE</dc:creator>
      <dc:date>2023-04-20T10:44:45Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC TABLE TO INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728894#M2020303</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;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. &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>Thu, 20 Apr 2023 10:45:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728894#M2020303</guid>
      <dc:creator>moshenaveh</dc:creator>
      <dc:date>2023-04-20T10:45:11Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC TABLE TO INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728895#M2020304</link>
      <description>&lt;P&gt;Your question re-formatted:&lt;/P&gt;&lt;P&gt;I need to convert a dynamic table to an internal one for the program to work, I leave the code below&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I NEED TO CREATE AN INTERNAL TABLE WITH THE VALUES OF THE DYNAMIC ONE CALLED 'tdinamica'&lt;/STRONG&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS: tablaN TYPE dd02l-tabname.
DATA: btn_ok TYPE sy-ucomm.
DATA tdinamica TYPE REF TO DATA.
field-symbols: &amp;lt;fs&amp;gt;.
*VARIABLES ALV
DATA:

  it_fcat      TYPE STANDARD TABLE OF lvc_s_fcat, "CATALOGO DE CAMPOS DE ALV | COLUMNAS DEL ALV"
  vg_container TYPE REF TO cl_gui_custom_container, "OBJETO DEL CONTENEDOR"
  obj_alv_grid TYPE REF TO cl_gui_alv_grid. "MÉTODOS DE LA CLASE ESTANDAR DE ALV TIPO GRID"
CREATE DATA tdinamica TYPE (tablaN).
ASSIGN tdinamica TO &amp;lt;fs&amp;gt;.
*CLASE INTERNA
CLASS cls_alv01 DEFINITION DEFERRED.
DATA: obj_alv_01 TYPE REF TO cls_alv01.&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Thu, 20 Apr 2023 11:31:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728895#M2020304</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-20T11:31:57Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC TABLE TO INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728896#M2020305</link>
      <description>&lt;P&gt;What about first changing few lines to this ? (you must indicate that it's a table, and you must use the DEREFERENCING operator -&amp;gt;* after create data, as you can find in many places in the Web)&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;field-symbols: &amp;lt;fs&amp;gt; TYPE STANDARD TABLE.
CREATE DATA tdinamica TYPE TABLE OF (tablaN).
ASSIGN tdinamica-&amp;gt;* TO &amp;lt;fs&amp;gt;.&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;etc.&lt;/P&gt;</description>
      <pubDate>Thu, 20 Apr 2023 11:34:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728896#M2020305</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2023-04-20T11:34:39Z</dc:date>
    </item>
    <item>
      <title>Re: DYNAMIC TABLE TO INTERNAL TABLE</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728897#M2020306</link>
      <description>&lt;P&gt;It worked doing -&amp;gt;*, thank you so much !!!&lt;/P&gt;</description>
      <pubDate>Fri, 21 Apr 2023 12:17:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-table-to-internal-table/m-p/12728897#M2020306</guid>
      <dc:creator>joaquinE</dc:creator>
      <dc:date>2023-04-21T12:17:02Z</dc:date>
    </item>
  </channel>
</rss>

