<?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: Why this dump=? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760583#M329263</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it works, but if tou sum the last column it goes in dump....or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 19 Dec 2006 10:33:15 GMT</pubDate>
    <dc:creator>former_member579227</dc:creator>
    <dc:date>2006-12-19T10:33:15Z</dc:date>
    <item>
      <title>Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760575#M329255</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;this simply program goes to dump when you sum the colums "menge" in ALV-grid. Why? I don't understant! Help me please. You can cut&amp;amp;paste the code and try it on your server..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ztempi_oda.&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tipo record da visualizzare&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TYPES: BEGIN OF t_record,&lt;/P&gt;&lt;P&gt;   ekorg LIKE eban-ekorg,&lt;/P&gt;&lt;P&gt;   werks LIKE eban-werks,&lt;/P&gt;&lt;P&gt;   badat LIKE eban-badat,&lt;/P&gt;&lt;P&gt;   banfn LIKE eban-banfn,&lt;/P&gt;&lt;P&gt;   banpr LIKE eban-banpr,&lt;/P&gt;&lt;P&gt;   afnam LIKE eban-afnam,&lt;/P&gt;&lt;P&gt;   erdat LIKE eban-erdat,&lt;/P&gt;&lt;P&gt;   bedat LIKE ekko-bedat,&lt;/P&gt;&lt;P&gt;   ebeln LIKE ekpo-ebeln,&lt;/P&gt;&lt;P&gt;   ekgrp LIKE ekko-ekgrp,&lt;/P&gt;&lt;P&gt;   lifnr LIKE ekko-lifnr,&lt;/P&gt;&lt;P&gt;   name1 LIKE lfa1-name1,&lt;/P&gt;&lt;P&gt;   konnr LIKE ekpo-konnr,&lt;/P&gt;&lt;P&gt;   trrda TYPE i,&lt;/P&gt;&lt;P&gt;   terda TYPE i,&lt;/P&gt;&lt;P&gt;END OF t_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tabelle in questione&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES: eban, ekpo, ekko, lfa1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tabelle interne&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: wa_record TYPE t_record,&lt;/P&gt;&lt;P&gt;      it_record TYPE STANDARD TABLE OF t_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*ALV data declarations&lt;/P&gt;&lt;P&gt;DATA: it_fieldcatalog TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog LIKE LINE OF it_fieldcatalog,&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;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;selezioni dell'utente&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT-OPTIONS: s_ekorg FOR eban-ekorg,&lt;/P&gt;&lt;P&gt;                s_werks FOR eban-werks,&lt;/P&gt;&lt;P&gt;                s_badat FOR eban-badat,&lt;/P&gt;&lt;P&gt;                s_banpr FOR eban-banpr,&lt;/P&gt;&lt;P&gt;                s_afnam FOR eban-afnam,&lt;/P&gt;&lt;P&gt;                s_ekgrp FOR eban-ekgrp.&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;                START     OF     SELECTION                           *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;carico i dati richiesti&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM load_report.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;stampo i dati&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  load_report&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      text&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&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 load_report.&lt;/P&gt;&lt;P&gt;  DATA: temp_bedat LIKE ekko-aedat,&lt;/P&gt;&lt;P&gt;        differenza LIKE wa_record-trrda,&lt;/P&gt;&lt;P&gt;        banfn_old LIKE eban-banfn,&lt;/P&gt;&lt;P&gt;        ebeln_old LIKE ekpo-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;pulisco la tabella interna&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CLEAR: it_record, wa_record.&lt;/P&gt;&lt;P&gt;  CLEAR banfn_old.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;scorro tutte le righe di tutti gli rda&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;  FROM eban&lt;/P&gt;&lt;P&gt;  WHERE ekorg IN s_ekorg AND&lt;/P&gt;&lt;P&gt;        werks IN s_werks AND&lt;/P&gt;&lt;P&gt;        badat IN s_badat AND&lt;/P&gt;&lt;P&gt;        banpr IN s_banpr AND&lt;/P&gt;&lt;P&gt;        afnam IN s_afnam AND&lt;/P&gt;&lt;P&gt;        ekgrp IN s_ekgrp AND&lt;/P&gt;&lt;P&gt;        loekz NE 'X'&lt;/P&gt;&lt;P&gt;   ORDER BY banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;considero solo una riga per ogni RDA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF eban-banfn NE banfn_old.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;assegnazione dei valori della riga&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      wa_record-ekorg = eban-ekorg.&lt;/P&gt;&lt;P&gt;      wa_record-werks = eban-werks.&lt;/P&gt;&lt;P&gt;      wa_record-badat = eban-badat.&lt;/P&gt;&lt;P&gt;      wa_record-banfn = eban-banfn.&lt;/P&gt;&lt;P&gt;      wa_record-banpr = eban-banpr.&lt;/P&gt;&lt;P&gt;      wa_record-afnam = eban-afnam.&lt;/P&gt;&lt;P&gt;      wa_record-erdat = eban-erdat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR ebeln_old.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;scorro tutte le righe degli ODA corrispondenti a quel RDA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      SELECT *&lt;/P&gt;&lt;P&gt;      FROM ekpo&lt;/P&gt;&lt;P&gt;      WHERE banfn EQ eban-banfn AND&lt;/P&gt;&lt;P&gt;            loekz NE 'X'&lt;/P&gt;&lt;P&gt;      ORDER BY ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;considero solo le righe con ODA diverso&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        IF ekpo-ebeln NE ebeln_old.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          wa_record-ebeln = ekpo-ebeln.&lt;/P&gt;&lt;P&gt;          wa_record-konnr = ekpo-konnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;aggiornamento per evitare le posizioni in ekpo&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          ebeln_old = ekpo-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mi attacco codice fornitore effettivo e buyer&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          SELECT SINGLE ekgrp lifnr bedat&lt;/P&gt;&lt;P&gt;          INTO (wa_record-ekgrp ,wa_record-lifnr, wa_record-bedat)&lt;/P&gt;&lt;P&gt;           FROM ekko&lt;/P&gt;&lt;P&gt;           WHERE ebeln EQ wa_record-ebeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;calcolo delle differenze di data&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          PERFORM calcola_differenze&lt;/P&gt;&lt;P&gt;            USING wa_record-erdat wa_record-badat wa_record-trrda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;          PERFORM calcola_differenze&lt;/P&gt;&lt;P&gt;            USING wa_record-bedat wa_record-erdat wa_record-terda.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mi attacco descrizione del fornitore&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          SELECT SINGLE name1&lt;/P&gt;&lt;P&gt;          INTO wa_record-name1&lt;/P&gt;&lt;P&gt;           FROM lfa1&lt;/P&gt;&lt;P&gt;           WHERE lifnr = wa_record-lifnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;popolo la tabella interna&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          APPEND wa_record TO it_record.&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;      ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;aggiornamento per evitare le posizioni in eban&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      banfn_old = wa_record-banfn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;pulizia wa prima di nuovo RDA&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CLEAR wa_record.&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;  ENDSELECT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " load_report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_fieldcatalog&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per la generazione dei campi della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 build_fieldcatalog .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-fieldname   = 'EKORG'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Org.Acq.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 19.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'WERKS'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Divisione'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 20.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'BADAT'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Data RDA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 2.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-emphasize   = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'BANFN'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Num.RDA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 3.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'BANPR'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'St.ril.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 5.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'AFNAM'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Richiedente'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 6.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'Data rilascio'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 7.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-emphasize   = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'BEDAT'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Data ODA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 8.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-emphasize   = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'EBELN'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Num.ODA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 9.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'EKGRP'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Buyer'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 11.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'LIFNR'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Forn.ord.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 14.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'NAME1'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Descr.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 15.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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;  wa_fieldcatalog-fieldname   = 'KONNR'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Cont.rif.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 16.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'TRRDA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Tempo.ril.(gg)'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 17.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-key         = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fa la media di questo valore e la visualizza alla fine dell'ALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa_fieldcatalog-do_sum      = 'C'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'TERDA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Tempo elab.(gg)'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 18.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-key         = 'X'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;fa la media di questo valore e la visualizza alla fine dell'ALV&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  wa_fieldcatalog-do_sum      = 'C'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR  wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " fill_fieldcatalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_layout&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per il settaggio del layout della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 build_layout .&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-totals_text       = 'Totals'(201).&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-totals_only        = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-f2code            = 'DISP'.  "Sets fcode for when double&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                        "click(press f2)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-zebra             = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-group_change_edit = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-header_text       = ''.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " build_layout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per la visualizzazione della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 display_alv_report .&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_CALLBACK_TOP_OF_PAGE   = 'TOP-OF-PAGE'  "see FORM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           i_grid_title           = outtext&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            is_layout               = gd_layout&lt;/P&gt;&lt;P&gt;            it_fieldcat             = it_fieldcatalog[]&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           it_special_groups       = gd_tabgroup&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_EVENTS                = GT_XEVENTS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            i_save                  = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           is_variant              = z_template&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_outtab                = it_record&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 &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  calcola_differenze&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      text&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_D1  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_D2  text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_DIFF  text&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 calcola_differenze  USING    p_d1&lt;/P&gt;&lt;P&gt;                                  p_d2&lt;/P&gt;&lt;P&gt;                                  p_diff.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: a(1) TYPE c,&lt;/P&gt;&lt;P&gt;        data1 like sy-datum,&lt;/P&gt;&lt;P&gt;        data2 like sy-datum.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  p_diff = 0.&lt;/P&gt;&lt;P&gt;  data1 = p_d1.&lt;/P&gt;&lt;P&gt;  data2 = p_d2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF data1 &amp;lt; data2.&lt;/P&gt;&lt;P&gt;    p_diff = -1.&lt;/P&gt;&lt;P&gt;  ELSE.&lt;/P&gt;&lt;P&gt;    WHILE data2 &amp;lt; data1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CLEAR a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION 'DATE_CONVERT_TO_FACTORYDATE'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          date                 = data2&lt;/P&gt;&lt;P&gt;          factory_calendar_id  = 'IT'&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          workingday_indicator = a.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      IF a IS INITIAL.&lt;/P&gt;&lt;P&gt;        p_diff = p_diff + 1.&lt;/P&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      data2 = data2 + 1.&lt;/P&gt;&lt;P&gt;    ENDWHILE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " calcola_differenze&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:23:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760575#M329255</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:23:34Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760576#M329256</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;wa_fieldcatalog-do_sum = 'X'..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kishan negi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:25:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760576#M329256</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:25:57Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760577#M329257</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;MENGE is quantity field. You need to map with UNIT field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Bhupal Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:26:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760577#M329257</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760578#M329258</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;we r not getting dump for this program...there is no MENGe field in the prog.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:29:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760578#M329258</guid>
      <dc:creator>aakash_neelaperumal2</dc:creator>
      <dc:date>2006-12-19T10:29:07Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760579#M329259</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;  fcat1-fieldname = 'PGMNG'.
  fcat1-key = ''.
  fcat1-outputlen = '13'.
  fcat1-just = 'R'.
  fcat1-seltext_m = 'PL.QTY.'.
  fcat1-ddictxt = 'M'.
  fcat1-inttype = 'P'.
  fcat1-datatype = 'QUAN'.
  fcat1-no_zero = 'X'.
  fcat1-do_sum = 'X'.
  append fcat1.
  clear fcat1.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:29:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760579#M329259</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:29:13Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760580#M329260</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If I insert &lt;/P&gt;&lt;P&gt;wa_fieldcatalog-do_sum      = 'C'.&lt;/P&gt;&lt;P&gt;the program goes immediatly in dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if i don't have &lt;/P&gt;&lt;P&gt;wa_fieldcatalog-do_sum      = 'C'.&lt;/P&gt;&lt;P&gt;the program view the alv.grid correctly but goes in dump when I push "sum" button&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:29:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760580#M329260</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:29:49Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760581#M329261</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gilbert,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code is working absolutely fine,&lt;/P&gt;&lt;P&gt;check the parameters you are passing in selection-screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;pankaj singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760581#M329261</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760582#M329262</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No. Dump again.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:32:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760582#M329262</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:32:28Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760583#M329263</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, it works, but if tou sum the last column it goes in dump....or not?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:33:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760583#M329263</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:33:15Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760584#M329264</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;last column is divison that is a character field &lt;/P&gt;&lt;P&gt;befor that tempo elob is there..and i can very well click on sum and see at the end..&lt;/P&gt;&lt;P&gt;its 52.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;pankaj singh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760584#M329264</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-19T10:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760585#M329265</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Now I try to insert the unit of mesurament and sum the menge for each UOM...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:35:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760585#M329265</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:35:47Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760586#M329266</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sorry. The code I insert is the correctly code of another program.&lt;/P&gt;&lt;P&gt;This is the right code that foes in dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zanalisi_oda                                                .&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tipo record da visualizzare&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TYPES: BEGIN OF t_record,&lt;/P&gt;&lt;P&gt;   aedat LIKE ekpo-aedat,&lt;/P&gt;&lt;P&gt;   ebeln LIKE ekpo-ebeln,&lt;/P&gt;&lt;P&gt;   ebelp LIKE ekpo-ebelp,&lt;/P&gt;&lt;P&gt;   matnr LIKE ekpo-matnr,&lt;/P&gt;&lt;P&gt;   txz01 LIKE ekpo-txz01,&lt;/P&gt;&lt;P&gt;   werks LIKE ekpo-werks,&lt;/P&gt;&lt;P&gt;   knttp LIKE ekpo-knttp,&lt;/P&gt;&lt;P&gt;   menge LIKE ekpo-menge,&lt;/P&gt;&lt;P&gt;END OF t_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tabelle in questione&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;TABLES: ekpo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;tabelle interne&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: wa_record TYPE t_record,&lt;/P&gt;&lt;P&gt;      it_record TYPE STANDARD TABLE OF t_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*ALV data declarations&lt;/P&gt;&lt;P&gt;DATA: it_fieldcatalog TYPE slis_t_fieldcat_alv,&lt;/P&gt;&lt;P&gt;      wa_fieldcatalog LIKE LINE OF it_fieldcatalog,&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;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;selezioni dell'utente&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;SELECT-OPTIONS: s_aedat FOR ekpo-aedat,&lt;/P&gt;&lt;P&gt;                s_ebeln FOR ekpo-ebeln,&lt;/P&gt;&lt;P&gt;                s_matnr FOR ekpo-matnr,&lt;/P&gt;&lt;P&gt;                s_werks FOR ekpo-werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: c_elikz AS CHECKBOX DEFAULT 'X'.&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;                START     OF     SELECTION                           *&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;carico i dati richiesti&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  PERFORM load_report.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;stampo i dati&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  load_report&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      text&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&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 load_report .&lt;/P&gt;&lt;P&gt;  CLEAR it_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*ciclo nella tabella EKPO&lt;/P&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;  FROM ekpo&lt;/P&gt;&lt;P&gt;  WHERE aedat IN s_aedat AND&lt;/P&gt;&lt;P&gt;        ebeln IN s_ebeln AND&lt;/P&gt;&lt;P&gt;        matnr IN s_matnr AND&lt;/P&gt;&lt;P&gt;        werks IN s_werks AND&lt;/P&gt;&lt;P&gt;        elikz EQ c_elikz AND&lt;/P&gt;&lt;P&gt;        loekz NE 'X'&lt;/P&gt;&lt;P&gt;  ORDER BY ebeln ebelp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    CLEAR wa_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    wa_record-aedat = ekpo-aedat.&lt;/P&gt;&lt;P&gt;    wa_record-ebeln = ekpo-ebeln.&lt;/P&gt;&lt;P&gt;    wa_record-ebelp = ekpo-ebelp.&lt;/P&gt;&lt;P&gt;    wa_record-matnr = ekpo-matnr.&lt;/P&gt;&lt;P&gt;    wa_record-txz01 = ekpo-txz01.&lt;/P&gt;&lt;P&gt;    wa_record-werks = ekpo-werks.&lt;/P&gt;&lt;P&gt;    wa_record-knttp = ekpo-knttp.&lt;/P&gt;&lt;P&gt;    wa_record-menge = ekpo-menge.&lt;/P&gt;&lt;P&gt;    APPEND wa_record TO it_record.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDSELECT.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " load_report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_fieldcatalog&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per la generazione dei campi della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 build_fieldcatalog .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-fieldname   = 'AEDAT'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Data ODA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 0.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'EBELN'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Numero ODA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 1.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-key         = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'EBELP'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Pos.ODA'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 2.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-key         = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'Materiale'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 3.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-emphasize   = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'TXZ01'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Descrizione'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 4.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'WERKS'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Mag.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 5.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'KNTTP'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Tipo contab.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 6.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'KOSTL'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'CdC'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 7.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'EIND'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Data cons.prev.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 8.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_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   = 'MENGE'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-seltext_m   = 'Qta ord.'.&lt;/P&gt;&lt;P&gt;  wa_fieldcatalog-col_pos     = 9.&lt;/P&gt;&lt;P&gt;  APPEND wa_fieldcatalog TO it_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR  wa_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " fill_fieldcatalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  build_layout&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per il settaggio del layout della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 build_layout .&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-totals_text       = 'Totals'(201).&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-totals_only        = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-f2code            = 'DISP'.  "Sets fcode for when double&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                                        "click(press f2)&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-zebra             = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-group_change_edit = 'X'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; gd_layout-header_text       = ''.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " build_layout&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  DISPLAY_ALV_REPORT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&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;      Routine per la visualizzazione della ALV GRID&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; No parameters&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 display_alv_report .&lt;/P&gt;&lt;P&gt;&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           I_CALLBACK_TOP_OF_PAGE   = 'TOP-OF-PAGE'  "see FORM&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           i_callback_user_command = 'USER_COMMAND'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           i_grid_title           = outtext&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            is_layout               = gd_layout&lt;/P&gt;&lt;P&gt;            it_fieldcat             = it_fieldcatalog[]&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           it_special_groups       = gd_tabgroup&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           IT_EVENTS                = GT_XEVENTS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            i_save                  = 'X'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;           is_variant              = z_template&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_outtab                = it_record&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 &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " DISPLAY_ALV_REPORT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:43:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760586#M329266</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:43:37Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760587#M329267</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;Check out the LFA1M1 view&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:53:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760587#M329267</guid>
      <dc:creator>graghavendra_sharma</dc:creator>
      <dc:date>2006-12-19T10:53:42Z</dc:date>
    </item>
    <item>
      <title>Re: Why this dump=?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760588#M329268</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This is only a little view of the report. At the end the tables and the fields used are much more...&lt;/P&gt;&lt;P&gt;I don't understand the dump! I try a lot of solution...but nothing...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 19 Dec 2006 10:56:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/why-this-dump/m-p/1760588#M329268</guid>
      <dc:creator>former_member579227</dc:creator>
      <dc:date>2006-12-19T10:56:14Z</dc:date>
    </item>
  </channel>
</rss>

