<?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: How to create a batch-job dynamically? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856849#M927103</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hm I am not using a printer I just write to standardoutput&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 26 May 2008 09:58:35 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-26T09:58:35Z</dc:date>
    <item>
      <title>How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856832#M927086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I would like to create a batch-job from within my abap code.&lt;/P&gt;&lt;P&gt;Therefore I want to determine a abap-report to be executed every X-Hours.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have some sample code for creating a batch job?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to do it in abap because I want to create a TN to trigger the code creating the job.&lt;/P&gt;&lt;P&gt;So the user interaction will be minimal to start a periodic batch job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 07:58:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856832#M927086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T07:58:19Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856833#M927087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;use FM job_open and job_close (job_submit or SUBMIT). for examples do a where used on job_open FM,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:12:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856833#M927087</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-26T08:12:58Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856834#M927088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT  Z_DG_CREATE_BATCH_JOB.
 CALL FUNCTION 'JOB_OPEN'
EXPORTING
JOBNAME = 'Dynamic'
IMPORTING
JOBCOUNT = 
EXCEPTIONS
CANT_CREATE_JOB = 1
INVALID_JOB_DATA = 2
JOBNAME_MISSING = 3
OTHERS = 4.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;P&gt;Can you tell me what that job count is?&lt;/P&gt;&lt;P&gt;The Jobname is be be set my me, isn't it, but where does jobcount come from?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:32:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856834#M927088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:32:24Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856835#M927089</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;- define user event by sm62&lt;/P&gt;&lt;P&gt;- create the required job &lt;STRONG&gt;event periodic&lt;/STRONG&gt; with your new event&lt;/P&gt;&lt;P&gt;- create a very small report with only call of function BP_EVENT_RAISE with your new event&lt;/P&gt;&lt;P&gt;- make a transaction for your new small start report&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Walter Habich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:36:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856835#M927089</guid>
      <dc:creator>former_member435013</dc:creator>
      <dc:date>2008-05-26T08:36:49Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856836#M927090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi walter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that's what I tried first. But the problem is that once a job is event-periodic i can't define the intervalls anymore. Therefore I need to create the job in abap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;edit: OK I think the fm will get me that jobcount after executing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Gerne on May 26, 2008 10:46 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:39:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856836#M927090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:39:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856837#M927091</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;U need to indicate all chararcteristics of the job while closing it by fm JOB_CLOSE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:49:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856837#M927091</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:49:22Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856838#M927092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;job count will show you the "ID Number of Background Job", you should declare it of type Char length 8, any variable will do.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This method is called as "Full Control Method".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use JOB_OPEN to create a background job. The function module returns the unique ID number which, together with the job name, is required for identifying the job. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once you have "opened" a job, you can add job steps to it with JOB_SUBMIT and submit the job for processing with JOB_CLOSE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use JOB_SUBMIT to add a job step to a background job that you have opened with JOB_OPEN. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A job step is an independent unit of work in a job, the execution of an ABAP or external program. Each job step can have its own authorizations user and printer/optical archiving specifications. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps, reward points it useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vishal.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:56:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856838#M927092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:56:23Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856839#M927093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi micky,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I implemented the code but the debugger says that the jobname has a wrong type. I gave him a c(7). what type do I need to use?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:57:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856839#M927093</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:57:09Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856840#M927094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;take the structure BTCEVTJOB. there 2 fields jobname &amp;amp; jobcount.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:58:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856840#M927094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T08:58:43Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856841#M927095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Daniel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select options could be stored by export/import to/from database:&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;      DESCRIBE TABLE t_vkpos LINES n.&lt;/P&gt;&lt;P&gt;      READ TABLE t_vkpos INDEX n.&lt;/P&gt;&lt;P&gt;      lastmaxvbeln = t_vkpos-vbeln.&lt;/P&gt;&lt;P&gt;      PERFORM get_varimemkey USING p_vari CHANGING vkposmemkey.&lt;/P&gt;&lt;P&gt;      EXPORT lastmaxvbeln TO DATABASE indx(zk) ID vkposmemkey.&lt;/P&gt;&lt;P&gt;      IF NOT sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;      PERFORM get_varimemkey USING p_vari CHANGING vkposmemkey.&lt;/P&gt;&lt;P&gt;      IMPORT lastmaxvbeln FROM DATABASE indx(zk) ID vkposmemkey.&lt;/P&gt;&lt;P&gt;      IF sy-subrc IS INITIAL.&lt;/P&gt;&lt;P&gt;        ls_vbeln-sign   = 'I'.&lt;/P&gt;&lt;P&gt;        ls_vbeln-option = 'GT'.&lt;/P&gt;&lt;P&gt;        ls_vbeln-low    = lastmaxvbeln.&lt;/P&gt;&lt;P&gt;        APPEND ls_vbeln.&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;...&lt;/P&gt;&lt;P&gt;FORM get_varimemkey USING    vari TYPE raldb_vari&lt;/P&gt;&lt;P&gt;                    CHANGING memkey TYPE char22.&lt;/P&gt;&lt;P&gt;  IF vari IS INITIAL.&lt;/P&gt;&lt;P&gt;    RAISE get_varimemkey_unexepected.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CONCATENATE 'Z_VKPOS_' vari INTO memkey.&lt;/P&gt;&lt;P&gt;ENDFORM.                    " &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Walter Habich&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 08:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856841#M927095</guid>
      <dc:creator>former_member435013</dc:creator>
      <dc:date>2008-05-26T08:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856842#M927096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;give C(8) buddy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:00:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856842#M927096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:00:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856843#M927097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank you. that works.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I cannot find the fitting type for JOB_WAS_RELEASED.&lt;/P&gt;&lt;P&gt;Can you tell me?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:18:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856843#M927097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:18:45Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856844#M927098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;job_was_released = 'x' ......if it gets successful....&lt;/P&gt;&lt;P&gt;This parameter is returned with the value X, if the job was automatically released for execution at the scheduled start time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A job is automatically released if the user has release authorizaton (authorization Background Processing: Operations on Background Jobs), RELE authorization or object Background Processing: Background Administrator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;no need to provide i think...u can proceed in dat way....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Sagar@MM on May 26, 2008 5:34 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:32:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856844#M927098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:32:34Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856845#M927099</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;but it is at IMPORTING which means the FM will give me that value, my problem is that I don't know where I can save it in. And that part will give me debug errors.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856845#M927099</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856846#M927100</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;create 1 variable type SY-BATCH. pass that thru.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:42:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856846#M927100</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:42:59Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856847#M927101</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;great the errors are gone. thank you guys.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now there are neither syntax errors nor debug errors.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once I start it now I get an announcement saying: "Printer for Jobsteps inappliably. No autmatic ouput available"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Could the problem be that the programms I use in the background job write something to screen?&lt;/P&gt;&lt;P&gt;Should I delete the code writing to screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where do I specify the intervalls the job is called?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Daniel Gerne on May 26, 2008 11:53 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:48:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856847#M927101</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:48:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856848#M927102</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is probably due to the printer you have defined. Try and use the default frontend printer (LOCL).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:56:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856848#M927102</guid>
      <dc:creator>Sm1tje</dc:creator>
      <dc:date>2008-05-26T09:56:57Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856849#M927103</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hm I am not using a printer I just write to standardoutput&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 09:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856849#M927103</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T09:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: How to create a batch-job dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856850#M927104</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Still 2 Questions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where is the intervall for the jobs defined?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I set the starttime of the first run?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 26 May 2008 10:14:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-a-batch-job-dynamically/m-p/3856850#M927104</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-26T10:14:01Z</dc:date>
    </item>
  </channel>
</rss>

