<?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: Re:ABAP in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881519#M676751</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;insert your write statements inside IF statements as shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-batch is initial.&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; write statements&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Sep 2007 08:11:59 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-21T08:11:59Z</dc:date>
    <item>
      <title>Re:ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881516#M676748</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;        i need to schedule background job but in my program iam using the write stmts for displaying tabs as requested by the user , tht list format is displayed in the text file for customer but when i schedule the job,iam getting the output list which i need to disable without effecting the text file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WRITE :/1 'ORDER'.&lt;/P&gt;&lt;P&gt;    WRITE : 6 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 7  S_DATA-CUSO LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    WRITE : 17 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 18 S_DATA-CUIN LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    WRITE : 24 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 25 S_DATA-ARKTX LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    WRITE : 42 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 43 S_DATA-V_QTY1 LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    WRITE : 53 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 54 S_DATA-WADAT_IST LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;    WRITE:  64 SY-VLINE.&lt;/P&gt;&lt;P&gt;    WRITE : 65 S_DATA-VBELN LEFT-JUSTIFIED.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      LIST_INDEX         = SY-LSIND&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      LISTASCI           = DOWNTAB&lt;/P&gt;&lt;P&gt;      LISTOBJECT         = ABAP_LIST&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      EMPTY_LIST         = 1&lt;/P&gt;&lt;P&gt;      LIST_INDEX_INVALID = 2&lt;/P&gt;&lt;P&gt;      OTHERS             = 3.&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 07:41:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881516#M676748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T07:41:49Z</dc:date>
    </item>
    <item>
      <title>Re: Re:ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881517#M676749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You can check for the field sy-batch. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the program is scheduled this field will contain a 'X' value. You can put a condition to check for this field and your problem should be solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REWARDS IF HELPFUL!!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 07:52:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881517#M676749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T07:52:16Z</dc:date>
    </item>
    <item>
      <title>Re: Re:ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881518#M676750</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;If I have understood you correctly,you want to download the data from your report in a text file which you want to schedule as a background job.&lt;/P&gt;&lt;P&gt;If that is the case,then there are 2 options to download the data,one is on the Presentation Server and the other is Application Server.&lt;/P&gt;&lt;P&gt;If you want to save it on the local PC or Presentation server,then use GUI_DOWNLOAD Function module and remove the write statements from your report.Populate the data in an internal table and pass it to the FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In acse, you want to download the data on the Application Server(T-code AL11),use Open Dataset and Close Dataset keywords for which you will get the documentation easily anywhere on the net.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case you have any further clarifications,do let me know.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Puneet Jhari.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 07:53:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881518#M676750</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T07:53:51Z</dc:date>
    </item>
    <item>
      <title>Re: Re:ABAP</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881519#M676751</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;insert your write statements inside IF statements as shown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF sy-batch is initial.&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;lt; write statements&amp;gt;&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Sep 2007 08:11:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/re-abap/m-p/2881519#M676751</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-21T08:11:59Z</dc:date>
    </item>
  </channel>
</rss>

