<?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: REPORT in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752109#M326171</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>Fri, 22 Dec 2006 14:32:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-22T14:32:39Z</dc:date>
    <item>
      <title>REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752104#M326166</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;REPORT OBJECT :&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;      devlope a inter active report which displays all the sales orders for one particular customer and contact information about the  particular customer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is my object.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any one help me for generate code for this object with out using ALV'S.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 14:31:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752104#M326166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T14:31:48Z</dc:date>
    </item>
    <item>
      <title>Re: REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752105#M326167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello pravardhan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The appropriate BAPIs are BAPI_SALESORDER_GETLIST, BAPI_CUSTOMER_GETDETAIL2 and BAPI_CUSTOMER_GETCONTACTLIST.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;  Uwe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 15:49:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752105#M326167</guid>
      <dc:creator>uwe_schieferstein</dc:creator>
      <dc:date>2006-12-12T15:49:40Z</dc:date>
    </item>
    <item>
      <title>Re: REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752106#M326168</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;&lt;/P&gt;&lt;P&gt;Check this example..It will take the customer input and display the orders for that customer..The customer information given in the top of page..&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;Data declaration.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;DATA: BEGIN OF itab OCCURS 0,&lt;/P&gt;&lt;P&gt;        vbeln TYPE vbeln,&lt;/P&gt;&lt;P&gt;        erdat TYPE erdat,&lt;/P&gt;&lt;P&gt;        auart TYPE auart,&lt;/P&gt;&lt;P&gt;        netwr TYPE vbak-netwr,&lt;/P&gt;&lt;P&gt;      END OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: wa_kna1 TYPE kna1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: t_fieldcatalog TYPE slis_t_fieldcat_alv.&lt;/P&gt;&lt;P&gt;DATA: s_fieldcatalog TYPE slis_fieldcat_alv.&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;PARAMETERS: p_kunnr TYPE kunnr OBLIGATORY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT SELECTION-SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT SINGLE * FROM kna1 INTO wa_kna1&lt;/P&gt;&lt;P&gt;         WHERE kunnr = p_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE s208(00) WITH 'Invalid customer'.&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Building the field catalog.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  s_fieldcatalog-col_pos = '1'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-fieldname = 'VBELN'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-tabname   = 'ITAB'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-rollname  = 'VBELN'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-outputlen = '12'.&lt;/P&gt;&lt;P&gt;  APPEND s_fieldcatalog TO t_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR: s_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-col_pos = '2'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-fieldname = 'ERDAT'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-tabname   = 'ITAB'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-rollname  = 'ERDAT'.&lt;/P&gt;&lt;P&gt;  APPEND s_fieldcatalog TO t_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR: s_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-col_pos = '3'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-fieldname = 'AUART'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-tabname   = 'ITAB'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-rollname  = 'AUART'.&lt;/P&gt;&lt;P&gt;  APPEND s_fieldcatalog TO t_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR: s_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-col_pos = '4'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-fieldname = 'NETWR'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-tabname   = 'ITAB'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-rollname  = 'NETWR_AK'.&lt;/P&gt;&lt;P&gt;  s_fieldcatalog-do_sum    = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND s_fieldcatalog TO t_fieldcatalog.&lt;/P&gt;&lt;P&gt;  CLEAR: s_fieldcatalog.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get the sales orders.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  SELECT vbeln erdat auart netwr&lt;/P&gt;&lt;P&gt;         FROM&lt;/P&gt;&lt;P&gt;         vbak&lt;/P&gt;&lt;P&gt;         INTO TABLE itab&lt;/P&gt;&lt;P&gt;         WHERE kunnr = p_kunnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE s208(00) WITH 'No records found'.&lt;/P&gt;&lt;P&gt;    LEAVE LIST-PROCESSING.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: v_repid TYPE syrepid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  v_repid = sy-repid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Events&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  DATA: t_events TYPE  slis_t_event,&lt;/P&gt;&lt;P&gt;        s_events LIKE LINE OF t_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  s_events-name = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;  s_events-form = 'TOP_OF_PAGE'.&lt;/P&gt;&lt;P&gt;  APPEND s_events TO t_events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Display the alv&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_DISPLAY'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            i_callback_program = v_repid&lt;/P&gt;&lt;P&gt;            it_fieldcat        = t_fieldcatalog&lt;/P&gt;&lt;P&gt;            it_events          = t_events[]&lt;/P&gt;&lt;P&gt;       TABLES&lt;/P&gt;&lt;P&gt;            t_outtab           = itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      FORM TOP_OF_PAGE                                              *&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;      ........                                                      *&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 top_of_page.&lt;/P&gt;&lt;P&gt;  WRITE: / 'Customer - ', p_kunnr.&lt;/P&gt;&lt;P&gt;  WRITE: / 'Name     - ', wa_kna1-name1.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 12 Dec 2006 16:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752106#M326168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-12T16:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752107#M326169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is program i have coded for my purpose  .&lt;/P&gt;&lt;P&gt;Hope this helps you .&lt;/P&gt;&lt;P&gt;This contains even the interactive list .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables : vbak, kna1, vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types : begin of ty_st1,&lt;/P&gt;&lt;P&gt;        vbeln type vbak-vbeln,&lt;/P&gt;&lt;P&gt;        ernam type vbak-ernam,&lt;/P&gt;&lt;P&gt;        erdat type vbak-erdat,&lt;/P&gt;&lt;P&gt;        name1 type kna1-name1,&lt;/P&gt;&lt;P&gt;        end of ty_st1,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        begin of ty_st2,&lt;/P&gt;&lt;P&gt;        matnr type makt-matnr,&lt;/P&gt;&lt;P&gt;        maktx type makt-maktx,&lt;/P&gt;&lt;P&gt;        charg type vbap-charg,&lt;/P&gt;&lt;P&gt;        posar type vbap-posar,&lt;/P&gt;&lt;P&gt;        end of ty_st2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : it_st1 type table of ty_st1,&lt;/P&gt;&lt;P&gt;       it_st2 type table of ty_st2,&lt;/P&gt;&lt;P&gt;       wa_st1 type ty_st1,&lt;/P&gt;&lt;P&gt;       wa_st2 type ty_st2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : len type c,&lt;/P&gt;&lt;P&gt;       dummy(10) type c,&lt;/P&gt;&lt;P&gt;       offset type i.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp;                            BASIC LIST&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK BLOCK1 WITH FRAME TITLE TEXT-009.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select-options date for vbak-erdat."obligatory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK BLOCK1 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if date-low is initial or date-high is initial.&lt;/P&gt;&lt;P&gt;  message i002(zgayatri).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  if date is initial.&lt;/P&gt;&lt;P&gt;    message i002(zgayatri).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select vbak~vbeln&lt;/P&gt;&lt;P&gt;           vbak~ernam&lt;/P&gt;&lt;P&gt;           vbak~erdat&lt;/P&gt;&lt;P&gt;           kna1~name1&lt;/P&gt;&lt;P&gt;    into table it_st1&lt;/P&gt;&lt;P&gt;    from vbak&lt;/P&gt;&lt;P&gt;    inner join kna1 on vbak&lt;SUB&gt;kunnr = kna1&lt;/SUB&gt;kunnr&lt;/P&gt;&lt;P&gt;    where vbak~erdat between date-low and date-high .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    uline at (86).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    write : / text-001,&lt;/P&gt;&lt;P&gt;            15 text-002,&lt;/P&gt;&lt;P&gt;            32 text-003,&lt;/P&gt;&lt;P&gt;            50 text-004,&lt;/P&gt;&lt;P&gt;            86 sy-vline .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    new-line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    uline at (86).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      message E000(zgayatri).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      loop at it_st1 into wa_st1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        write : /  wa_st1-vbeln, sy-vline,&lt;/P&gt;&lt;P&gt;                15 wa_st1-ernam, sy-vline,&lt;/P&gt;&lt;P&gt;                35 wa_st1-erdat, sy-vline,&lt;/P&gt;&lt;P&gt;                50 wa_st1-name1, sy-vline.&lt;/P&gt;&lt;P&gt;        uline at (86).&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;    endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp;                          AT LINE-SELECTION&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;at line-selection.&lt;/P&gt;&lt;P&gt;  clear wa_st1.&lt;/P&gt;&lt;P&gt;  if sy-lisel(1) = '-'.&lt;/P&gt;&lt;P&gt;  elseif sy-lisel(1) = 'd'.&lt;/P&gt;&lt;P&gt;  else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp;                  PROCESS WITH SY-LISEL&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    dummy = sy-lisel(10).&lt;/P&gt;&lt;P&gt;    len = strlen( dummy ).&lt;/P&gt;&lt;P&gt;    offset = 10 - len.&lt;/P&gt;&lt;P&gt;    dummy = '0000000000'.&lt;/P&gt;&lt;P&gt;    concatenate dummy(offset) sy-lisel(len) into wa_st1-vbeln.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;*&amp;amp;                  DETAIL LIST&lt;/P&gt;&lt;P&gt;*&amp;amp;----&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select makt&lt;SUB&gt;matnr makt&lt;/SUB&gt;maktx vbap&lt;SUB&gt;charg vbap&lt;/SUB&gt;posar&lt;/P&gt;&lt;P&gt;    into table it_st2&lt;/P&gt;&lt;P&gt;    from makt&lt;/P&gt;&lt;P&gt;    inner join vbap on vbap&lt;SUB&gt;matnr = makt&lt;/SUB&gt;matnr&lt;/P&gt;&lt;P&gt;    where vbap~vbeln = wa_st1-vbeln and spras = 'EN'.&lt;/P&gt;&lt;P&gt;    if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;      message E000(zgayatri).&lt;/P&gt;&lt;P&gt;    else.&lt;/P&gt;&lt;P&gt;      uline at (107).&lt;/P&gt;&lt;P&gt;      write : /  text-005,&lt;/P&gt;&lt;P&gt;              25 text-006,&lt;/P&gt;&lt;P&gt;              67 text-007,&lt;/P&gt;&lt;P&gt;              95 text-008,&lt;/P&gt;&lt;P&gt;              107 sy-vline.&lt;/P&gt;&lt;P&gt;      loop at it_st2 into wa_st2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        uline at (107).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        write : /   wa_st2-matnr, sy-vline,&lt;/P&gt;&lt;P&gt;                25  wa_st2-maktx, sy-vline,&lt;/P&gt;&lt;P&gt;                70  wa_st2-charg, sy-vline,&lt;/P&gt;&lt;P&gt;                105  wa_st2-posar, sy-vline.&lt;/P&gt;&lt;P&gt;      endloop.&lt;/P&gt;&lt;P&gt;      uline at (107).&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 13 Dec 2006 06:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752107#M326169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-13T06:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752108#M326170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;    chrishna chaitanya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  thank for solving my problem.&lt;/P&gt;&lt;P&gt;i think you are satisfied with six points.&lt;/P&gt;&lt;P&gt;if you are not satisfied i am sorry.&lt;/P&gt;&lt;P&gt;once again thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    you receving this message relply me because i want to you happy are not.&lt;/P&gt;&lt;P&gt;once again thanks.&lt;/P&gt;&lt;P&gt;my mail id is : prava_sairam@yahoo.co.in&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Dec 2006 14:31:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752108#M326170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T14:31:01Z</dc:date>
    </item>
    <item>
      <title>Re: REPORT</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752109#M326171</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>Fri, 22 Dec 2006 14:32:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/1752109#M326171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-22T14:32:39Z</dc:date>
    </item>
  </channel>
</rss>

