<?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: reg.reports in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776985#M908790</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;You need to assign the reference structure to field symbol before passing value to it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;f_fs&amp;gt; type table,&lt;/P&gt;&lt;P&gt;                     &amp;lt;f_fs2&amp;gt; type any,&lt;/P&gt;&lt;P&gt;                     &amp;lt;f_fs3&amp;gt; type any,&lt;/P&gt;&lt;P&gt;                      &amp;lt;f_wa&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA G_WA LIKE LINE OF &amp;lt;F_FS&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN G_WA-&amp;gt;* TO &amp;lt;F_WA&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;f_fs&amp;gt; assigning &amp;lt;f_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;assign component 2 of structure &amp;lt;f_wa&amp;gt; to &amp;lt;f_fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;"here you can modify value of  &amp;lt;f_fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For exact resolution, paste your code.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Apr 2008 04:58:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-25T04:58:52Z</dc:date>
    <item>
      <title>reg.reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776982#M908787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;iam doing one alv report iam using blocked alvs .now it is going to the dump because of some field symbol is not assigned. in the error anlysis it is showing '' the current abap program '' saplkkbl''had be terminated because it has come across the statement''. what i do for this one?. Rewards are helpful answers.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Narasimha Rao.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:43:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776982#M908787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:43:53Z</dc:date>
    </item>
    <item>
      <title>Re: reg.reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776983#M908788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u send the code&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:48:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776983#M908788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:48:01Z</dc:date>
    </item>
    <item>
      <title>Re: reg.reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776984#M908789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check ur table names and fieldnames when u pass the field catalog for the order and spelling. Generally these silly mistakes will give u dump.&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;Ramya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:55:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776984#M908789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:55:33Z</dc:date>
    </item>
    <item>
      <title>Re: reg.reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776985#M908790</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;You need to assign the reference structure to field symbol before passing value to it. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;f_fs&amp;gt; type table,&lt;/P&gt;&lt;P&gt;                     &amp;lt;f_fs2&amp;gt; type any,&lt;/P&gt;&lt;P&gt;                     &amp;lt;f_fs3&amp;gt; type any,&lt;/P&gt;&lt;P&gt;                      &amp;lt;f_wa&amp;gt; type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CREATE DATA G_WA LIKE LINE OF &amp;lt;F_FS&amp;gt;.&lt;/P&gt;&lt;P&gt;ASSIGN G_WA-&amp;gt;* TO &amp;lt;F_WA&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;f_fs&amp;gt; assigning &amp;lt;f_wa&amp;gt;.&lt;/P&gt;&lt;P&gt;assign component 2 of structure &amp;lt;f_wa&amp;gt; to &amp;lt;f_fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;"here you can modify value of  &amp;lt;f_fs3&amp;gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For exact resolution, paste your code.&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Kannaiah&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 04:58:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776985#M908790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T04:58:52Z</dc:date>
    </item>
    <item>
      <title>Re: reg.reports</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776986#M908791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi , iam sending the code please see the code , this is code is going to the dump. rewards are helpful answers.&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; Report  ZPICK_SUMMARY&lt;/P&gt;&lt;P&gt;**&amp;amp;&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;UL&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; Description :  Pick order summary&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; AUTHOR      :  N.Narasimha Rao&lt;/P&gt;&lt;/LI&gt;&lt;LI level="2" type="ul"&gt;&lt;P&gt; Req.number  :  DEVK900694&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;   REPORT  ZPICK_SUMMARY.&lt;/P&gt;&lt;P&gt;**----- Tables Declaration&lt;/P&gt;&lt;P&gt;Tables : vbak,vbap,vbup,likp,lips,makt,vbfa.&lt;/P&gt;&lt;P&gt;Type-pools: slis.&lt;/P&gt;&lt;P&gt;*------- Types Declaration&lt;/P&gt;&lt;P&gt;Types: Begin of gty_vbak,&lt;/P&gt;&lt;P&gt;       vbeln type vbak-vbeln,          "  Sales order number&lt;/P&gt;&lt;P&gt;       erdat type vbak-erdat,&lt;/P&gt;&lt;P&gt;       vkgrp type vbak-vkgrp,          "  Sales Group&lt;/P&gt;&lt;P&gt;       kunnr type vbak-kunnr,          "  customer number&lt;/P&gt;&lt;P&gt;       end of gty_vbak.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types : Begin of gty_likp,&lt;/P&gt;&lt;P&gt;        vbeln type likp-vbeln,         "   Delivery order number&lt;/P&gt;&lt;P&gt;        erdat type likp-erdat,         "   Date on Which Record Was Created&lt;/P&gt;&lt;P&gt;        lfdat  type likp-lfdat,         "   Delivery Date&lt;/P&gt;&lt;P&gt;        matnr type lips-matnr,         "   Material number&lt;/P&gt;&lt;P&gt;        lgort type lips-lgort,         "   storage location&lt;/P&gt;&lt;P&gt;        lfimg type lips-lfimg,         "   Actual quantity delivered (in sales units)&lt;/P&gt;&lt;P&gt;        maktx type makt-maktx,         "  Material Description&lt;/P&gt;&lt;P&gt;        end of gty_likp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Types : Begin of gty_lips,&lt;/P&gt;&lt;P&gt;        vbeln type lips-vbeln,&lt;/P&gt;&lt;P&gt;        erdat type lips-erdat,&lt;/P&gt;&lt;P&gt;        matnr type lips-matnr,         "   Material number&lt;/P&gt;&lt;P&gt;        lgort type lips-lgort,         "   storage location&lt;/P&gt;&lt;P&gt;        lfimg type lips-lfimg,         "   Actual quantity delivered (in sales units)&lt;/P&gt;&lt;P&gt;        End of gty_lips,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Begin of gty_vbap,&lt;/P&gt;&lt;P&gt;        VBELN TYPE VBAP-VBELN,&lt;/P&gt;&lt;P&gt;        kwmeng type vbap-kwmeng,       "  Cumulative Order Quantity in Sales Units&lt;/P&gt;&lt;P&gt;        end of gty_vbap,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Begin of gty_makt,&lt;/P&gt;&lt;P&gt;        MATNR TYPE MAKT-MATNR,&lt;/P&gt;&lt;P&gt;        maktx type makt-maktx,         "  Material Description&lt;/P&gt;&lt;P&gt;        end of gty_makt,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        Begin of gty_vbup,&lt;/P&gt;&lt;P&gt;        VBELN TYPE VBUP-VBELN,&lt;/P&gt;&lt;P&gt;        lfsta type vbup-lfsta,        "   Delivery status&lt;/P&gt;&lt;P&gt;        end of gty_vbup,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        begin of gty_vbfa,&lt;/P&gt;&lt;P&gt;        vbeln type vbfa-vbeln,&lt;/P&gt;&lt;P&gt;        vbelv type vbfa-vbelv,&lt;/P&gt;&lt;P&gt;        end of gty_vbfa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt; Types declaration for out put&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Types : Begin of gty_output,&lt;/P&gt;&lt;P&gt;         vbeln  type likp-vbeln,&lt;/P&gt;&lt;P&gt;         vkgrp  type vbak-vkgrp,&lt;/P&gt;&lt;P&gt;         kunnr  type vbak-kunnr,&lt;/P&gt;&lt;P&gt;         erdat  type likp-erdat,&lt;/P&gt;&lt;P&gt;         lfdat  type likp-lfdat,&lt;/P&gt;&lt;P&gt;         matnr  type lips-matnr,&lt;/P&gt;&lt;P&gt;         lgort  type lips-lgort,&lt;/P&gt;&lt;P&gt;         lfimg  type lips-lfimg,&lt;/P&gt;&lt;P&gt;         kwmeng type vbap-kwmeng,&lt;/P&gt;&lt;P&gt;         maktx  type makt-maktx,&lt;/P&gt;&lt;P&gt;         lfsta  type vbup-lfsta,&lt;/P&gt;&lt;P&gt;         end of gty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt;Internal table Declaration.&lt;/P&gt;&lt;P&gt;Data : gt_vbak type   table of gty_vbak,&lt;/P&gt;&lt;P&gt;       gt_vbfa type   table of gty_vbfa,&lt;/P&gt;&lt;P&gt;       gt_likp type   table of gty_likp,&lt;/P&gt;&lt;P&gt;       gt_lips type   table of gty_lips,&lt;/P&gt;&lt;P&gt;       gt_vbap type   table of gty_vbap,&lt;/P&gt;&lt;P&gt;       gt_vbup type   table of gty_vbup,&lt;/P&gt;&lt;P&gt;       gt_makt type   table of gty_makt,&lt;/P&gt;&lt;P&gt;       gt_output type table of gty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="----" /&gt;&lt;P&gt; Workarea Declaration.&lt;/P&gt;&lt;P&gt;Data : gs_vbak   type gty_vbak,&lt;/P&gt;&lt;P&gt;       gs_vbfa   type gty_vbfa,&lt;/P&gt;&lt;P&gt;       gs_likp   type gty_likp,&lt;/P&gt;&lt;P&gt;       gs_lips   type gty_lips,&lt;/P&gt;&lt;P&gt;       gs_vbap   type gty_vbap,&lt;/P&gt;&lt;P&gt;       gs_vbup   type gty_vbup,&lt;/P&gt;&lt;P&gt;       gs_makt   type gty_makt,&lt;/P&gt;&lt;P&gt;       gs_output type gty_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Data: gs_layout type slis_layout_alv.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: GT_FIELDCAT TYPE SLIS_T_FIELDCAT_ALV,&lt;/P&gt;&lt;P&gt;      GS_FIELDCAT TYPE SLIS_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; DATA: GT_FIELDCAT1 TYPE SLIS_T_FIELDCAT_ALV,&lt;/P&gt;&lt;P&gt;      GS_FIELDCAT1 TYPE SLIS_FIELDCAT_ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Data:gt_event type slis_t_event,&lt;/P&gt;&lt;P&gt;      gs_event type slis_alv_event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Data : gt_event1 type slis_t_event,&lt;/P&gt;&lt;P&gt;       gs_event1 type slis_alv_event.&lt;/P&gt;&lt;P&gt;data:  gt_repid type sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;..........selection-screen......................*&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;selection-screen begin of block b1 with frame title text-001.&lt;/P&gt;&lt;P&gt;parameters: p_vbeln type vbak-vbeln.&lt;/P&gt;&lt;P&gt;parameters: p_erdat type likp-erdat.&lt;/P&gt;&lt;P&gt;parameters: p_kunnr type vbak-kunnr.&lt;/P&gt;&lt;P&gt;selection-screen end of block b1.&lt;/P&gt;&lt;P&gt;&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;perform get_data.&lt;/P&gt;&lt;P&gt;perform lay_out.&lt;/P&gt;&lt;P&gt;perform  field_cat1.&lt;/P&gt;&lt;P&gt;perform field_cat2.&lt;/P&gt;&lt;P&gt;perform out_display.&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  GET_DATA&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 GET_DATA .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select vbeln&lt;/P&gt;&lt;P&gt;           vkgrp&lt;/P&gt;&lt;P&gt;           kunnr&lt;/P&gt;&lt;P&gt;           into  corresponding fields of table gt_vbak from vbak&lt;/P&gt;&lt;P&gt;           where vbeln = p_vbeln and&lt;/P&gt;&lt;P&gt;                 kunnr = p_kunnr.&lt;/P&gt;&lt;P&gt;     if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;         select vbeln&lt;/P&gt;&lt;P&gt;                vbelv&lt;/P&gt;&lt;P&gt;                into  corresponding fields of table gt_vbfa from vbfa&lt;/P&gt;&lt;P&gt;                for all entries in gt_vbak&lt;/P&gt;&lt;P&gt;                where vbeln = gt_vbak-vbeln.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;     if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;      select vbeln&lt;/P&gt;&lt;P&gt;             erdat&lt;/P&gt;&lt;P&gt;             lfdat&lt;/P&gt;&lt;P&gt;             into  corresponding fields of table gt_likp from likp&lt;/P&gt;&lt;P&gt;             for all entries in gt_vbfa&lt;/P&gt;&lt;P&gt;             where erdat = p_erdat and&lt;/P&gt;&lt;P&gt;                   vbeln = gt_vbfa-vbelv.&lt;/P&gt;&lt;P&gt;&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;     loop at gt_vbak into gs_vbak.&lt;/P&gt;&lt;P&gt;     read table gt_vbfa into gs_vbfa with key vbeln = gs_vbak-vbeln binary search.&lt;/P&gt;&lt;P&gt;     read table gt_likp into gs_likp with key vbeln = gs_vbfa-vbelv.&lt;/P&gt;&lt;P&gt;     if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;     move: gs_vbak-vbeln to gs_output-vbeln,&lt;/P&gt;&lt;P&gt;           gs_vbak-vkgrp to gs_output-vkgrp,&lt;/P&gt;&lt;P&gt;           gs_vbak-kunnr to gs_output-kunnr,&lt;/P&gt;&lt;P&gt;           gs_likp-vbeln to gs_output-vbeln,&lt;/P&gt;&lt;P&gt;           gs_likp-erdat to gs_output-erdat,&lt;/P&gt;&lt;P&gt;           gs_likp-lfdat to gs_output-lfdat.&lt;/P&gt;&lt;P&gt;           append gs_output to gt_output.&lt;/P&gt;&lt;P&gt;           endif.&lt;/P&gt;&lt;P&gt;           endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; select matnr&lt;/P&gt;&lt;P&gt;       lgort&lt;/P&gt;&lt;P&gt;       lfimg&lt;/P&gt;&lt;P&gt;       into corresponding fields of table gt_lips from lips&lt;/P&gt;&lt;P&gt;       for all entries in gt_likp&lt;/P&gt;&lt;P&gt;       where vbeln = gt_likp-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;       select matnr&lt;/P&gt;&lt;P&gt;              maktx&lt;/P&gt;&lt;P&gt;              into corresponding fields of table gt_makt from makt&lt;/P&gt;&lt;P&gt;              for all entries in gt_lips&lt;/P&gt;&lt;P&gt;              where matnr = gt_lips-matnr.&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;       if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;       select vbeln&lt;/P&gt;&lt;P&gt;              lfsta&lt;/P&gt;&lt;P&gt;              into corresponding fields of table gt_vbup from vbup&lt;/P&gt;&lt;P&gt;              for all entries in gt_vbak&lt;/P&gt;&lt;P&gt;              where vbeln = gt_vbak-vbeln.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       loop at gt_lips into gs_lips.&lt;/P&gt;&lt;P&gt;       read table gt_makt into gs_makt with key matnr = gs_lips-matnr.&lt;/P&gt;&lt;P&gt;       read table gt_vbup into gs_vbup with key vbeln = gs_vbak-vbeln.&lt;/P&gt;&lt;P&gt;        move: gs_lips-matnr to gs_output-matnr,&lt;/P&gt;&lt;P&gt;              gs_lips-lgort to gs_output-lgort,&lt;/P&gt;&lt;P&gt;              gs_lips-lfimg to gs_output-lfimg,&lt;/P&gt;&lt;P&gt;              gs_makt-maktx to gs_output-maktx,&lt;/P&gt;&lt;P&gt;              gs_vbup-lfsta to gs_output-lfsta.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;              append gs_output to gt_output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       endloop.&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.                    " GET_DATA&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;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  LAY_OUT&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 LAY_OUT .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_layout-zebra = 'x'.&lt;/P&gt;&lt;P&gt;gs_layout-get_selinfos ='x'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " LAY_OUT&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  FIELD_CAT1&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 FIELD_CAT1 .&lt;/P&gt;&lt;P&gt;refresh gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat-fieldname  = 'vbeln'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-seltext_l  = 'sales order number'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-col_pos    = 1.&lt;/P&gt;&lt;P&gt;gs_fieldcat-row_pos    = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append gs_fieldcat to gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat-fieldname  = 'erdat'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-seltext_l  = 'del order date'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-col_pos    = 1.&lt;/P&gt;&lt;P&gt;gs_fieldcat-row_pos    = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append gs_fieldcat to gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat-fieldname  = 'lfdat'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-seltext_l  = 'delivery date'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-col_pos    = 1.&lt;/P&gt;&lt;P&gt;gs_fieldcat-row_pos    = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append gs_fieldcat to gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat-fieldname  = 'vkgrp'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-seltext_l  = 'seller'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-col_pos    = 4.&lt;/P&gt;&lt;P&gt;gs_fieldcat-row_pos    = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append gs_fieldcat to gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat-fieldname  = 'kunnr'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-seltext_l  = 'custm number'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat-col_pos    = 4.&lt;/P&gt;&lt;P&gt;gs_fieldcat-row_pos    = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append gs_fieldcat to gt_fieldcat.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat.&lt;/P&gt;&lt;P&gt;endform.                    " FIELD_CAT1&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  FIELD_CAT2&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 FIELD_CAT2 .&lt;/P&gt;&lt;P&gt;refresh gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'matnr'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 'sku'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 1.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'makt'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 'material desc'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 2.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'lgort'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 's.location'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 3.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'kwmeng'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 'ord.quan'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 4.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'lfimg'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 's.quan'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 5.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;gs_fieldcat1-fieldname  = 'lfsta'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-seltext_l  = 'delivery status'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-datatype   =   'CHAR'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-outputlen  =   30.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-tabname    = 'gt_output'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-key        =     'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-hotspot    = 'X'.&lt;/P&gt;&lt;P&gt;gs_fieldcat1-col_pos    = 6.&lt;/P&gt;&lt;P&gt;append gs_fieldcat1 to gt_fieldcat1.&lt;/P&gt;&lt;P&gt;clear gs_fieldcat1.&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;&lt;/P&gt;&lt;P&gt;endform.                    " FIELD_CAT2&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  OUT_DISPLAY&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 OUT_DISPLAY .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_INIT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    i_callback_program             = sy-repid.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_CALLBACK_PF_STATUS_SET       = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_CALLBACK_USER_COMMAND        = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_EXCLUDING                   =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'&lt;/P&gt;&lt;P&gt;  EXPORTING&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;    i_tabname                        = 'gt_output'&lt;/P&gt;&lt;P&gt;    it_events                        = gt_event&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_SORT                          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_TEXT                           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    t_outtab                         = gt_output&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PROGRAM_ERROR                    = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAXIMUM_OF_APPENDS_REACHED       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&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;CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_APPEND'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    is_layout                        = gs_layout&lt;/P&gt;&lt;P&gt;    it_fieldcat                      = gt_fieldcat1&lt;/P&gt;&lt;P&gt;    i_tabname                        = 'gt_output'&lt;/P&gt;&lt;P&gt;    it_events                        =  gt_event1&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IT_SORT                          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_TEXT                           = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  tables&lt;/P&gt;&lt;P&gt;    t_outtab                         = gt_output&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PROGRAM_ERROR                    = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MAXIMUM_OF_APPENDS_REACHED       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                           = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&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;CALL FUNCTION 'REUSE_ALV_BLOCK_LIST_DISPLAY'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_INTERFACE_CHECK             = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  IS_PRINT                      =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_START_COLUMN         = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_START_LINE           = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_END_COLUMN           = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  I_SCREEN_END_LINE             = 0&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  E_EXIT_CAUSED_BY_CALLER       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  ES_EXIT_CAUSED_BY_USER        =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PROGRAM_ERROR                 = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                        = 2&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          .&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;&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.                    " OUT_DISPLAY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please write what i have to do for this one.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Apr 2008 05:02:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/reg-reports/m-p/3776986#M908791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-25T05:02:15Z</dc:date>
    </item>
  </channel>
</rss>

