<?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: Running reports during certain timeframes only? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298942#M1025101</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;Schedule the reports as background job using SM36 tcode and mention the timings and date and block the user access to these reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 31 Jul 2008 19:50:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-31T19:50:43Z</dc:date>
    <item>
      <title>Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298941#M1025100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In our environment, custom reports have been created which, when run, potentially have the ability to bring the system to its knees.  I would like to set up some type of authorization that allows the running of reports only at a specific times each day so as not to interfere with our heavy demand times.  Is this a possibility, and if so, how do I do this?  Is this something that would be built into the report itself, or is this an actual authorization?  Thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 19:39:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298941#M1025100</guid>
      <dc:creator>EMJ</dc:creator>
      <dc:date>2008-07-31T19:39:46Z</dc:date>
    </item>
    <item>
      <title>Re: Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298942#M1025101</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;Schedule the reports as background job using SM36 tcode and mention the timings and date and block the user access to these reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rakesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 19:50:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298942#M1025101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T19:50:43Z</dc:date>
    </item>
    <item>
      <title>Re: Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298943#M1025102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You should be able to schedule running these reports as background jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto - SM36,&lt;/P&gt;&lt;P&gt;Come up with a job name for the report that you want to schedule ( having some job naming convention helps )&lt;/P&gt;&lt;P&gt;and enter it in the Job name field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Start condition and choose when the options of how and when you want to run your report.&lt;/P&gt;&lt;P&gt;Pay attention to period job check box and you can pick and choose your time frame for running the reports.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;finally ..click on Step button and enter your report name in the ABAP program section and just follow the steps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 31 Jul 2008 19:57:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298943#M1025102</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-31T19:57:14Z</dc:date>
    </item>
    <item>
      <title>Re: Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298944#M1025103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Is this something that would be built into the report itself, or is this an actual authorization?  &lt;/P&gt;&lt;P&gt;The only actual authorization available for this type of thing is to provide the user only with S_BTCH_JOB authority and not any S_BTCH_ADM. This way, only priority C type jobs will be released by them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might want to conside a check upfront in the program to ensure that the report only can run in the background.... system field SY-BATCH can be used for that and possibly also not assign object  S_BTCH_JOB authority to them for JOBACTION 'RELE' (i.e. they cannot release the job) and then only release the already scheduled jobs at certain times.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If these reports have to run in the foreground as well, then you can use system field SY-UZEIT in the program and a check table to set the times at which it can be executed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The possibilities of performance tuning your programs and several others also come to mind &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:30:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298944#M1025103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:30:35Z</dc:date>
    </item>
    <item>
      <title>Re: Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298945#M1025104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you to all who responded, I will take each into account when coming up with a solution for this issue.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:41:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298945#M1025104</guid>
      <dc:creator>EMJ</dc:creator>
      <dc:date>2008-08-05T14:41:02Z</dc:date>
    </item>
    <item>
      <title>Re: Running reports during certain timeframes only?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298946#M1025105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please also update us with the solution which best suited your requirement. This is informative for others as well, and we might have some comments on the solution as well &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Julius&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Aug 2008 14:50:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/running-reports-during-certain-timeframes-only/m-p/4298946#M1025105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-05T14:50:34Z</dc:date>
    </item>
  </channel>
</rss>

