<?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: ALV GRID FUNCTIONS in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976993#M71096</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhakaran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clicking on your common custom toolbar will set the focus on this toolbar. You will not know where it was before, at least I do not know such a thing as focus history.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, how do you display the four grids and how do you display them without toolbar?&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>Mon, 10 Jan 2011 20:37:00 GMT</pubDate>
    <dc:creator>Clemenss</dc:creator>
    <dc:date>2011-01-10T20:37:00Z</dc:date>
    <item>
      <title>ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976984#M71087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Everyone,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have 4-5 grids on my screen and a common custom toolbar for all of the grids. The toolbar has buttons like print, find, details, export etc. Based on the focus on which grid I will have to implement the above toolbar functionality. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After figuring out on which grid the focus was present, when the user clicked on the toolbar button. I would like to know how to implement print, find, details, export functions. Are there any grid related function modules which I can call to implement these functions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sample codes will be highly appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance,&lt;/P&gt;&lt;P&gt;Prabhakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 08:02:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976984#M71087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T08:02:11Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976985#M71088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhakaran,&lt;/P&gt;&lt;P&gt;Standard SAP toolbar has the Print/Find buttons that will work for you.&lt;/P&gt;&lt;P&gt;Print, Find are functions that are handled by the standard SAP, if you dont handle it yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did u try giving it a func code and letting SAP handle it ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;Prashanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 08:13:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976985#M71088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T08:13:06Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976986#M71089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried giving a function code but it doesn't work. It gives an error saying "this function is not possible". Since the focus is on a ALV grid, SAP doesn't know how to print it. Do u have any sample code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prabhakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 08:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976986#M71089</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T08:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976987#M71090</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; Here is a Sample Code,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: G_REPID LIKE SY-REPID, &lt;/P&gt;&lt;P&gt;GS_PRINT            TYPE SLIS_PRINT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Print Parameters &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;PARAMETERS: &lt;/P&gt;&lt;P&gt;            P_PRINT  AS CHECKBOX DEFAULT ' ', "PRINT IMMEDIATE &lt;/P&gt;&lt;P&gt;            P_NOSINF AS CHECKBOX DEFAULT 'X', "NO SELECTION INFO &lt;/P&gt;&lt;P&gt;            P_NOCOVE AS CHECKBOX DEFAULT ' ', "NO COVER PAGE &lt;/P&gt;&lt;P&gt;            P_NONEWP AS CHECKBOX DEFAULT ' ', "NO NEW PAGE &lt;/P&gt;&lt;P&gt;            P_NOLINF AS CHECKBOX DEFAULT 'X', "NO PRINT LIST INFO &lt;/P&gt;&lt;P&gt;            P_RESERV TYPE I.                  "NO OF FOOTER LINE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION. &lt;/P&gt;&lt;P&gt;G_REPID = SY-REPID. &lt;/P&gt;&lt;P&gt;PERFORM PRINT_BUILD    USING GS_PRINT.      "Print PARAMETERS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ABAP List Viewer &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY' &lt;/P&gt;&lt;P&gt;EXPORTING &lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = G_REPID &lt;/P&gt;&lt;P&gt;I_STRUCTURE_NAME = 'ITAB1' &lt;/P&gt;&lt;P&gt;IS_LAYOUT =  GS_LAYOUT &lt;/P&gt;&lt;P&gt;IT_FIELDCAT = GT_FIELDCAT[] &lt;/P&gt;&lt;P&gt;  IT_SORT = GT_SORT[] &lt;/P&gt;&lt;P&gt;  IT_EVENTS = GT_EVENTS[] &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IT_EVENT_EXIT = &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IS_PRINT = GS_PRINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;PRINT SETTINGS &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;FORM PRINT_BUILD USING LS_PRINT TYPE SLIS_PRINT_ALV. &lt;/P&gt;&lt;P&gt;  LS_PRINT-PRINT              = P_PRINT.  "PRINT IMMEDIATE &lt;/P&gt;&lt;P&gt;  LS_PRINT-NO_PRINT_SELINFOS  = P_NOSINF. "NO SELECTION INFO &lt;/P&gt;&lt;P&gt;  LS_PRINT-NO_COVERPAGE       = P_NOCOVE. "NO COVER PAGE &lt;/P&gt;&lt;P&gt;  LS_PRINT-NO_NEW_PAGE        = P_NONEWP. &lt;/P&gt;&lt;P&gt;  LS_PRINT-NO_PRINT_LISTINFOS = P_NOLINF. "NO PRINT LIST INFO &lt;/P&gt;&lt;P&gt;  LS_PRINT-RESERVE_LINES      = P_RESERV. &lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Also Check this link,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapalv.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapalv.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_events.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid_events.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Hope it helps u.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Thanks&amp;amp;Regards,&lt;/P&gt;&lt;P&gt;Ruthra.R&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 09:07:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976987#M71090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T09:07:58Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976988#M71091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you need to build a commn toolbar using class CL_GUI_TOOLBAR and from these button you can trigger the events of the grids.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 09:13:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976988#M71091</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-09-05T09:13:27Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976989#M71092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi prabhakaran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this might help you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alvhome.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alvhome.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;venu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Sep 2005 09:44:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976989#M71092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-05T09:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976990#M71093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm using object oriented implementation for alv grid. I want to print the contents of the grid as a list. Are there any methods to call the implement the print function. Here is the sample of how my code looks like, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  create object alv_container&lt;/P&gt;&lt;P&gt;            exporting container_name = 'ALV_CONTAINER'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  create Event Receiver&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     create object event_receiver.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     create object alv_grid&lt;/P&gt;&lt;P&gt;            exporting  i_parent =  alv_container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     gs_layout-grid_title = 'Flights'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    gs_layout-keyhot = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     clear fieldcat.  refresh: fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     clear: ls_fcat.&lt;/P&gt;&lt;P&gt;     ls_fcat-reptext    = 'Carriage Number'.&lt;/P&gt;&lt;P&gt;     ls_fcat-coltext    = 'Carriage Number'.&lt;/P&gt;&lt;P&gt;     ls_fcat-fieldname  = 'CARRID'.&lt;/P&gt;&lt;P&gt;     ls_fcat-ref_table  = 'IALV'.&lt;/P&gt;&lt;P&gt;     ls_fcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;     ls_fcat-outputlen  = '10'.&lt;/P&gt;&lt;P&gt;     ls_fcat-col_pos    = 1.&lt;/P&gt;&lt;P&gt;     append ls_fcat to fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     clear: ls_fcat.&lt;/P&gt;&lt;P&gt;     ls_fcat-reptext    = 'Flight Description'.&lt;/P&gt;&lt;P&gt;     ls_fcat-coltext    = 'Flight Description'.&lt;/P&gt;&lt;P&gt;     ls_fcat-fieldname  = 'CONNID'.&lt;/P&gt;&lt;P&gt;     ls_fcat-ref_table  = 'IALV'.&lt;/P&gt;&lt;P&gt;     ls_fcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;     ls_fcat-outputlen  = '20'.&lt;/P&gt;&lt;P&gt;     ls_fcat-col_pos    = 2.&lt;/P&gt;&lt;P&gt;     append ls_fcat to fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     call method alv_grid-&amp;gt;set_table_for_first_display&lt;/P&gt;&lt;P&gt;         exporting&lt;/P&gt;&lt;P&gt;              is_layout        = gs_layout&lt;/P&gt;&lt;P&gt;         changing&lt;/P&gt;&lt;P&gt;              it_outtab       = ialv[]&lt;/P&gt;&lt;P&gt;              it_fieldcatalog = fieldcat[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  handler for ALV grid&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     set handler event_receiver-&amp;gt;handle_hotspot_click for alv_grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Prabhakar.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 03:15:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976990#M71093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-09-06T03:15:12Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976991#M71094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;check this program to find how you can manage the grid toolbar button click event from outside.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BCALV_TEST_GRID_TOOLBAR&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 06 Sep 2005 05:07:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976991#M71094</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2005-09-06T05:07:21Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976992#M71095</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;We can use ABAP ALV LIST and GRID function modules to  display Normal LIST and Hiearchical LISTS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_LIST_DISPLAY                                          &lt;/P&gt;&lt;P&gt;REUSE_ALV_HIERARCHICAL_LIST_DISPLAY                   &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REUSE_ALV_GRID_DISPLAY &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE SLIS_T_FIEDLCAT_ALV &lt;/P&gt;&lt;P&gt;These are the function modules are used &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want code on alv grid functions then follow this site&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://sap.niraj.tripod.com/id66.html" target="test_blank"&gt;http://sap.niraj.tripod.com/id66.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will helpful for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 19:25:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976992#M71095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-10T19:25:34Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976993#M71096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prabhakaran,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;clicking on your common custom toolbar will set the focus on this toolbar. You will not know where it was before, at least I do not know such a thing as focus history.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;By the way, how do you display the four grids and how do you display them without toolbar?&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>Mon, 10 Jan 2011 20:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976993#M71096</guid>
      <dc:creator>Clemenss</dc:creator>
      <dc:date>2011-01-10T20:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: ALV GRID FUNCTIONS</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976994#M71097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Once again, check the date of the OP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 10 Jan 2011 20:52:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-grid-functions/m-p/976994#M71097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-01-10T20:52:14Z</dc:date>
    </item>
  </channel>
</rss>

