<?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: hi in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743632#M322838</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  The following function modules are used for creating jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Full Control Method&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  JOB_OPEN&lt;/P&gt;&lt;P&gt;  JOB_CLOSE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easy Schedule Method.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BP_JOBVARIANT_SCHEDULE &lt;/P&gt;&lt;P&gt;BP_JOBVARIANT_OVERVIEW&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 21 Dec 2006 07:24:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-12-21T07:24:57Z</dc:date>
    <item>
      <title>hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743631#M322837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what r  the function modules used to generate/ maintain batch jobs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 07:15:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743631#M322837</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T07:15:19Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743632#M322838</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;  The following function modules are used for creating jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Full Control Method&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;  JOB_OPEN&lt;/P&gt;&lt;P&gt;  JOB_CLOSE&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Easy Schedule Method.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;BP_JOBVARIANT_SCHEDULE &lt;/P&gt;&lt;P&gt;BP_JOBVARIANT_OVERVIEW&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vara&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 07:24:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743632#M322838</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T07:24:57Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743633#M322839</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi khadar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There are two ways to schedule a job from a program:&lt;/P&gt;&lt;P&gt; 1. the "express" method using the BP_JOBVARIANT_SCHEDULE function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; 2.  the "full-control" method using the JOB_OPEN, JOB_SUBMIT, and JOB_CLOSE function modules. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With this method, you have full control over such job options as printing, start time options, and so on. &lt;/P&gt;&lt;P&gt;To schedule a job from within a program using the express method, you need only call the BP_JOBVARIANT_SCHEDULE function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With BP_JOBVARIANT_OVERVIEW, you can offer your users a simplified display and management function for their "express-method" jobs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'BP_JOBVARIANT_SCHEDULE'&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;P&gt;title_name = 'Documentation Check' " Displayed as title of&lt;/P&gt;&lt;P&gt;" of scheduling screens&lt;/P&gt;&lt;P&gt;job_name = 'DocuCheck' " Name of background&lt;/P&gt;&lt;P&gt;" processing job&lt;/P&gt;&lt;P&gt;prog_name = 'RSTWGZS2' " Name of ABAP&lt;/P&gt;&lt;P&gt;" report that is to be&lt;/P&gt;&lt;P&gt;" run -- used also to&lt;/P&gt;&lt;P&gt;" select variants&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;no_such_report = 01. " PROG_NAME program&lt;/P&gt;&lt;P&gt;" not found.&lt;/P&gt;&lt;P&gt;call function 'BP_JOBVARIANT_OVERVIEW' " List the jobs that&lt;/P&gt;&lt;P&gt;exporting " have been scheduled&lt;/P&gt;&lt;P&gt;title_name = 'Documentation Check' " Displayed as title&lt;/P&gt;&lt;P&gt;" of overview screen&lt;/P&gt;&lt;P&gt;job_name = 'DokuCheck' " Jobs with this name&lt;/P&gt;&lt;P&gt;" are listed&lt;/P&gt;&lt;P&gt;prog_name = 'RSTWGZS2'&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;no_such_job = 01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For further information check the  link below&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a80eb505211d189550000e829fbbd/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw2004s/helpdata/en/c4/3a80eb505211d189550000e829fbbd/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 07:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743633#M322839</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-12-21T07:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: hi</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743634#M322840</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 use  JOB_OPEN and JOB_CLOSE fms...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Abdul&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 21 Dec 2006 22:04:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hi/m-p/1743634#M322840</guid>
      <dc:creator>abdul_hakim</dc:creator>
      <dc:date>2006-12-21T22:04:02Z</dc:date>
    </item>
  </channel>
</rss>

