<?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: Interactive ALV  Report Using Function...? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138172#M113797</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this code sample&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/an-interactive-alv-report.htm" target="test_blank"&gt;http://www.sap-img.com/abap/an-interactive-alv-report.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Feb 2006 09:31:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-20T09:31:33Z</dc:date>
    <item>
      <title>Interactive ALV  Report Using Function...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138170#M113795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How to create Interactive ALV Report... when we are creating report using Function Modules...? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please... with examples...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dharmesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138170#M113795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV  Report Using Function...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138171#M113796</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;Look at the following link will helps you a lot.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/mpioud/Abap_programs.html" target="test_blank"&gt;http://www.geocities.com/mpioud/Abap_programs.html&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at the following code ..........&lt;/P&gt;&lt;P&gt;&lt;/P&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      = i_repid&lt;/P&gt;&lt;P&gt;   i_callback_user_command = 'USER_COMMAND_PERNR'&lt;/P&gt;&lt;P&gt;   it_fieldcat             = header&lt;/P&gt;&lt;P&gt;   is_layout               = gt_layout&lt;/P&gt;&lt;P&gt;   i_callback_top_of_page  = 'TOP-OF-PAGE1'&lt;/P&gt;&lt;P&gt;   i_grid_title            = text-t06&lt;/P&gt;&lt;P&gt;   it_sort                 = gt_sort[]&lt;/P&gt;&lt;P&gt;   i_default               = 'X'&lt;/P&gt;&lt;P&gt;   i_save                  = 'U'&lt;/P&gt;&lt;P&gt;   is_variant              = gt_variant&lt;/P&gt;&lt;P&gt;   it_events               = gt_events&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   t_outtab                = ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  clear itab.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM USER_COMMAND_PERNR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND_PERNR USING u_ucomm     LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                             us_selfield TYPE slis_selfield."#EC CALLED&lt;/P&gt;&lt;P&gt;  CASE u_ucomm.&lt;/P&gt;&lt;P&gt;    when '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;      if us_selfield-fieldname = 'PERNR'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       read table ITAB index us_selfield-tabindex.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;       set parameter id 'PER' field ITAB-PERNR.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        set parameter id 'PER' field us_selfield-value.&lt;/P&gt;&lt;P&gt;        call transaction 'ZDMR03' and skip first screen.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;   ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.                               " USER_COMMAND_PERNR&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;If this helps you reward with points.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:30:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138171#M113796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:30:39Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV  Report Using Function...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138172#M113797</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See this code sample&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/an-interactive-alv-report.htm" target="test_blank"&gt;http://www.sap-img.com/abap/an-interactive-alv-report.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:31:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138172#M113797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:31:33Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV  Report Using Function...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138173#M113798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;

&amp;lt;b&amp;gt;type-pools:slis.&amp;lt;/b&amp;gt;

tables: vbak,vbap.

select-options : s_vbeln for VBAK-VBELN.

data: it_vbap like vbap occurs 0 with header line.


select *
       from vbap
       into table it_vbap
       where vbeln in s_vbeln.

CALL FUNCTION &amp;lt;b&amp;gt;'REUSE_ALV_GRID_DISPLAY'&amp;lt;/b&amp;gt;
 EXPORTING
   I_CALLBACK_PROGRAM                = sy-repid
   I_STRUCTURE_NAME                  = 'VBAP'
  TABLES
    T_OUTTAB                          = it_vbap[]
 EXCEPTIONS
   PROGRAM_ERROR                     = 1
   OTHERS                            = 2
          .
IF SY-SUBRC &amp;lt;&amp;gt; 0.
 MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:32:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138173#M113798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:32:31Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV  Report Using Function...?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138174#M113799</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;this link contains example for interactive alv reports&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/an-interactive-alv-report.htm" target="test_blank"&gt;http://www.sap-img.com/abap/an-interactive-alv-report.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;padma&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Feb 2006 09:35:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-report-using-function/m-p/1138174#M113799</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-20T09:35:51Z</dc:date>
    </item>
  </channel>
</rss>

