<?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 Binding ALV GRID with Deep Internal Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046063#M1501406</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I am looking for a way to display ALV Grid with the Deep ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My ITAB is not too complex. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has One Structure which gets whole DB table + One extra field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore my Itab looks as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF TY_TRIP,
        ZPM_UPLOAD LIKE ZDBTABLE, "ZDBTABLE is custom database table.
        TDTIME TYPE STRING,
       END OF TY_TRIP.
DATA: ITAB TYPE TABLE OF TY_TRIP,
      WA_ITAB LIKE LINE OF ITAB.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am able to populate data into Deep ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i call ALV Grid with ITAB then i get error. So how to call 'REUSE_ALV_GRID_DISPLAY' with this ITAB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 24 Jul 2010 06:17:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-07-24T06:17:03Z</dc:date>
    <item>
      <title>Binding ALV GRID with Deep Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046063#M1501406</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;I am looking for a way to display ALV Grid with the Deep ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My ITAB is not too complex. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It has One Structure which gets whole DB table + One extra field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Therefore my Itab looks as follows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF TY_TRIP,
        ZPM_UPLOAD LIKE ZDBTABLE, "ZDBTABLE is custom database table.
        TDTIME TYPE STRING,
       END OF TY_TRIP.
DATA: ITAB TYPE TABLE OF TY_TRIP,
      WA_ITAB LIKE LINE OF ITAB.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i am able to populate data into Deep ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If i call ALV Grid with ITAB then i get error. So how to call 'REUSE_ALV_GRID_DISPLAY' with this ITAB?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 06:17:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046063#M1501406</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-24T06:17:03Z</dc:date>
    </item>
    <item>
      <title>Re: Binding ALV GRID with Deep Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046064#M1501407</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;My senior asked me to use the below definition.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPES: BEGIN OF TY_TRIP.
        INCLUDE STRUCTURE ZDBTABLE.
TYPES:  TDTIME TYPE STRING,
       END OF TY_TRIP.
DATA: ITAB TYPE TABLE OF TY_TRIP,
      WA_ITAB LIKE LINE OF ITAB.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If anyone else is looking to print in ALV, they can use this type of ITAB definition though it gives you the flexiblity to create ITAB and also making it FLAT and not DEEP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But i am still looking for an answer for my first post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 07:40:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046064#M1501407</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-07-24T07:40:40Z</dc:date>
    </item>
    <item>
      <title>Re: Binding ALV GRID with Deep Internal Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046065#M1501408</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Your senior collegue gave you correct clue. You can't pass deep table to ALV. Your definition assumes you have two components, of which first is a structure itself. This will not work with ALV. You have to use the latter, sorry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 24 Jul 2010 14:34:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/binding-alv-grid-with-deep-internal-table/m-p/7046065#M1501408</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-07-24T14:34:37Z</dc:date>
    </item>
  </channel>
</rss>

