<?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 report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503544#M565818</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use upper case in fieldcatlog and coding should be readble,i made some modfication and i did not test it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zxyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools:slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: YTMOHIT_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type standard table of YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data: wa type YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data report_id like sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_field_cat TYPE slis_t_fieldcat_alv .&lt;/P&gt;&lt;P&gt;DATA: lw_field_cat LIKE line of i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_emplid FOR ytmohit_01-emp_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initilization.&lt;/P&gt;&lt;P&gt;report_id = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ytmohit_01 into table itab WHERE emp_id in s_emplid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'EMP_ID'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='employee id'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'FNAME'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='firstname'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'LNAME'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='lastname'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'OCCU'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='occupation'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'JOINDATE'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='joindate'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'MNSAL'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='monthly salary'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'CUKY'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='currency'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = report_id&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = i_field_cat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_outtab = itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif. &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;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Jul 2007 12:25:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-13T12:25:15Z</dc:date>
    <item>
      <title>alv report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503542#M565816</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;iam getting all the field name in columns but data is not being displayed.&lt;/P&gt;&lt;P&gt;please review my code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools:slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: YTMOHIT_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type standard table of YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data: wa type YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data report_id like sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_emplid FOR ytmohit_01-emp_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report_id = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ytmohit_01 into table itab WHERE emp_id in s_emplid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_field_cat TYPE slis_t_fieldcat_alv .&lt;/P&gt;&lt;P&gt;DATA: lw_field_cat LIKE line of i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'emp_id'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='employee id'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'fname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='firstname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'lname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='lastname'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'occu'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='occupation'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'joindate'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='joindate'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'mnsal'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='monthly salary'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'cuky'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='currency'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM   = 'report_id'&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = i_field_cat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_outtab = itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 11:36:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503542#M565816</guid>
      <dc:creator>MohitSingh</dc:creator>
      <dc:date>2007-07-13T11:36:48Z</dc:date>
    </item>
    <item>
      <title>Re: alv report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503543#M565817</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;DO the follwing changes.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = report_id&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = i_field_cat[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_outtab = itab[]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 12:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503543#M565817</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-13T12:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: alv report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503544#M565818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please use upper case in fieldcatlog and coding should be readble,i made some modfication and i did not test it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT zxyz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;type-pools:slis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables: YTMOHIT_01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data: itab type standard table of YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data: wa type YTMOHIT_01.&lt;/P&gt;&lt;P&gt;data report_id like sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_field_cat TYPE slis_t_fieldcat_alv .&lt;/P&gt;&lt;P&gt;DATA: lw_field_cat LIKE line of i_field_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_emplid FOR ytmohit_01-emp_id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK b1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;initilization.&lt;/P&gt;&lt;P&gt;report_id = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;start-of-selection.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM ytmohit_01 into table itab WHERE emp_id in s_emplid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;end-of-selection.&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'EMP_ID'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='employee id'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'FNAME'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='firstname'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'LNAME'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='lastname'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'OCCU'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='occupation'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'JOINDATE'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='joindate'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'MNSAL'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='monthly salary'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lw_field_cat-tabname = 'YTMOHIT_01'&lt;/P&gt;&lt;P&gt;lw_field_cat-fieldname = 'CUKY'.&lt;/P&gt;&lt;P&gt;lw_field_cat-seltext_l ='currency'.&lt;/P&gt;&lt;P&gt;APPEND lw_field_cat TO i_field_cat.&lt;/P&gt;&lt;P&gt;clear lw_fieldcat_cat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I_CALLBACK_PROGRAM = report_id&lt;/P&gt;&lt;P&gt;IT_FIELDCAT = i_field_cat&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;t_outtab = itab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OTHERS = 2&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif. &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;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Jul 2007 12:25:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2503544#M565818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-13T12:25:15Z</dc:date>
    </item>
  </channel>
</rss>

