<?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: regarding  normal  ALVs in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727469#M897117</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 22 Apr 2008 05:51:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-22T05:51:46Z</dc:date>
    <item>
      <title>regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727463#M897111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi friends,&lt;/P&gt;&lt;P&gt;I have developed a report in alv .it's working .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) when I tried to add some additional flds it's not working properly&lt;/P&gt;&lt;P&gt;here iam giving my codig.I addeded matkl,arktx. it's giving wrong data of these 2flds.&lt;/P&gt;&lt;P&gt;can any body help me to get this.&lt;/P&gt;&lt;P&gt;2) &lt;/P&gt;&lt;P&gt;when i tried to change from grid list to normal list it's working&lt;/P&gt;&lt;P&gt;after addition of fields it's not work out. plz let me know the solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&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;REPORT  Z_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: vbak,vbap.&lt;/P&gt;&lt;P&gt;select-options:s_vbeln for vbak-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPE-POOLS: slis. "ALV Declarations&lt;/P&gt;&lt;P&gt;*Data Declaration&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----------" /&gt;&lt;P&gt;TYPES: BEGIN OF t_final,&lt;/P&gt;&lt;P&gt;vbeln LIKE vbak-vbeln,&lt;/P&gt;&lt;P&gt;erdat LIKE vbak-erdat,&lt;/P&gt;&lt;P&gt;matnr LIKE vbap-matnr,&lt;/P&gt;&lt;P&gt;posnr LIKE vbap-posnr,&lt;/P&gt;&lt;P&gt;matkl LIKE vbap-matkl,&lt;/P&gt;&lt;P&gt;arktx LIKE vbap-arktx,&lt;/P&gt;&lt;P&gt;END OF t_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: i_final TYPE STANDARD TABLE OF t_final initial size 0,&lt;/P&gt;&lt;P&gt;        wa_final TYPE t_final.&lt;/P&gt;&lt;P&gt;*ALV data declarations&lt;/P&gt;&lt;P&gt;DATA: fieldcatalog TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog type slis_fieldcat_alv,&lt;/P&gt;&lt;P&gt;*gd_tab_group TYPE slis_t_sp_group_alv,&lt;/P&gt;&lt;P&gt;gd_layout TYPE slis_layout_alv,&lt;/P&gt;&lt;P&gt;gd_repid LIKE sy-repid.&lt;/P&gt;&lt;P&gt;*Start-of-selection.&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM data_retrieval.&lt;/P&gt;&lt;P&gt;PERFORM build_fieldcatalog.&lt;/P&gt;&lt;P&gt;PERFORM build_layout.&lt;/P&gt;&lt;P&gt;PERFORM display_alv_report.&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form BUILD_FIELDCATALOG&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;#149; Build Fieldcatalog for ALV Report&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt; FORM build_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'sales order'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 0.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'ERDAT'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'date'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 1.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'MATNR'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'material no.'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 2.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'POSNR'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'line item no.'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 3.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'matkl'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'mat grp.'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 4.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'arktx'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'short txt'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 5.&lt;/P&gt;&lt;P&gt;append wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&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;ENDFORM. " BUILD_FIELDCATALOG&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form BUILD_LAYOUT&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;#149; Build layout for ALV grid report&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt; FORM build_layout.&lt;/P&gt;&lt;P&gt;*gd_layout-no_input = 'X'.&lt;/P&gt;&lt;P&gt;*gd_layout-colwidth_optimize = 'X'.&lt;/P&gt;&lt;P&gt;*gd_layout-totals_text = 'Totals'(201).&lt;/P&gt;&lt;P&gt;**&amp;#149; gd_layout-totals_only = 'X'.&lt;/P&gt;&lt;P&gt;**&amp;#149; gd_layout-f2code = 'DISP'. "Sets fcode for when double&lt;/P&gt;&lt;P&gt;**&amp;#149; "click(press f2)&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt;gd_layout-zebra = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;**&amp;#149; gd_layout-group_change_edit = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;gd_layout-header_text = 'helllllo'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDFORM. " BUILD_LAYOUT&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;#149; Display report using ALV grid&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt; FORM display_alv_report.&lt;/P&gt;&lt;P&gt;gd_repid = sy-repid.&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 = gd_repid&lt;/P&gt;&lt;P&gt;*&amp;#149; i_callback_top_of_page = 'TOP-OF-PAGE' "see FORM&lt;/P&gt;&lt;P&gt;i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;P&gt;*&amp;#149; i_grid_title = outtext&lt;/P&gt;&lt;P&gt;is_layout = gd_layout&lt;/P&gt;&lt;P&gt;it_fieldcat = fieldcatalog[]&lt;/P&gt;&lt;P&gt;*&amp;#149; it_special_groups = gd_tabgroup&lt;/P&gt;&lt;P&gt;*&amp;#149; IT_EVENTS = GT_XEVENTS&lt;/P&gt;&lt;P&gt;i_save = 'X'&lt;/P&gt;&lt;P&gt;*&amp;#149; is_variant = z_template&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;t_outtab = i_final&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;program_error = 1&lt;/P&gt;&lt;P&gt;OTHERS = 2.&lt;/P&gt;&lt;P&gt;IF sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;message ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt; WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM. " DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp; Form DATA_RETRIEVAL&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;#149; Retrieve data form EKPO table and populate itab it_ekko&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---------------------------------------------------------------------------" /&gt;&lt;P&gt; FORM data_retrieval.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT a&lt;SUB&gt;vbeln a&lt;/SUB&gt;erdat b&lt;SUB&gt;matnr b&lt;/SUB&gt;posnr b&lt;SUB&gt;matkl b&lt;/SUB&gt;arktx FROM vbak AS a&lt;/P&gt;&lt;P&gt;INNER JOIN vbap AS b ON a&lt;SUB&gt;vbeln = b&lt;/SUB&gt;vbeln&lt;/P&gt;&lt;P&gt;INTO TABLE i_final WHERE a~vbeln in s_vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM. " DATA_RETRIEVAL&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;when i chabged from grid to list.&lt;/P&gt;&lt;P&gt;I addeded some extra fields in my outputlist. with this it goes to runtime error.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 04:25:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727463#M897111</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T04:25:07Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727464#M897112</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;Please mention the field names in Upper Case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as in...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
* wa_fieldcatalog-fieldname = 'matkl'.
wa_fieldcatalog-fieldname = 'MATKL'.
wa_fieldcatalog-seltext_m = 'mat grp.'.
wa_fieldcatalog-col_pos = 4.
APPEND wa_fieldcatalog TO fieldcatalog.
CLEAR wa_fieldcatalog.

*wa_fieldcatalog-fieldname = 'arktx'.
wa_fieldcatalog-fieldname = 'ARKTX'.
wa_fieldcatalog-seltext_m = 'short txt'.
wa_fieldcatalog-col_pos = 5.
append wa_fieldcatalog TO fieldcatalog.
CLEAR wa_fieldcatalog.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Reward points inorder to say thanks and encourage us,&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Kiran&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 04:31:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727464#M897112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T04:31:34Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727465#M897113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;while preparing the fieldcatalog  u have written field  name in lower case so make them like&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;wa_fieldcatalog-fieldname = 'MATKL'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;wa_fieldcatalog-fieldname = 'ARKTX'.&lt;/STRONG&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;STRONG&gt;reward if helpful&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 04:31:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727465#M897113</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T04:31:46Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727466#M897114</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Frd&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the fields MATKL &amp;amp; ARKTX should in upper case in ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'MATKL'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'mat grp.'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 4.&lt;/P&gt;&lt;P&gt;APPEND wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-fieldname = 'ARKTX'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-seltext_m = 'short txt'.&lt;/P&gt;&lt;P&gt;wa_fieldcatalog-col_pos = 5.&lt;/P&gt;&lt;P&gt;append wa_fieldcatalog TO fieldcatalog.&lt;/P&gt;&lt;P&gt;CLEAR wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward Me Points&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BY&lt;/P&gt;&lt;P&gt;Pari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 04:48:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727466#M897114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T04:48:15Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727467#M897115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;In ur field catalog perform u forgot include one more step.&lt;/P&gt;&lt;P&gt;i.e &lt;/P&gt;&lt;P&gt;wa_fieldcat-tabname   = I_FINAL. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First u should add ur fields to t_final structure and then append.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what ever values u retrieve into i_final will display in the output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;kk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 04:59:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727467#M897115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T04:59:53Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727468#M897116</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;When you create fieldcatalog the fieldname should be in capital letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to pass &lt;STRONG&gt;MATKL and ARKTX&lt;/STRONG&gt; in capital letters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is useful for you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 05:35:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727468#M897116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T05:35:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding  normal  ALVs</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727469#M897117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 22 Apr 2008 05:51:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-normal-alvs/m-p/3727469#M897117</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-22T05:51:46Z</dc:date>
    </item>
  </channel>
</rss>

