<?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: Automatic processing of Program in background when table gets an entry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651536#M1445035</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreeram, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the venets in Ztable.&lt;/P&gt;&lt;P&gt;You can make use of On Save event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whe ever user enters a new entry and clicks on Save ....your program will get triggered in teh background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To execute a program in Background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) CALL TRANSACTION... IN BACKGROUND TASK with the function module actually submitting the report OR&lt;/P&gt;&lt;P&gt;2) SUBMIT report... VIA JOB.. AND RETURN with use of the JOB_OPEN and JOB_CLOSE function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Reference :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kittu on Mar 17, 2010 9:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 Mar 2010 07:59:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-03-17T07:59:40Z</dc:date>
    <item>
      <title>Automatic processing of Program in background when table gets an entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651533#M1445032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a program : ZXXXX.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have requirement that whenever user adds an entry to the table : ZYYY(i.e when a new entry is added for the table : ZYYY),the program ZXXXX has to be processed in background mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest how we can achieve this requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 07:30:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651533#M1445032</guid>
      <dc:creator>sreeramkumar_madisetty</dc:creator>
      <dc:date>2010-03-17T07:30:50Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic processing of Program in background when table gets an entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651534#M1445033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you have a maintenance view for the table maintenance modify the event 02 after save to call your program&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 07:40:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651534#M1445033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T07:40:45Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic processing of Program in background when table gets an entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651535#M1445034</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;Create table maintenence generator for ZYYY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then go to table maintenence generator -&amp;gt; environment -&amp;gt; modifications -&amp;gt; envents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on new entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Give event type as 05.Give routine name and click on create option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will take you to that routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this routine call program ZXXXX using SUBMIT statement. It will execute your probram in background mode for every new entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 07:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651535#M1445034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T07:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: Automatic processing of Program in background when table gets an entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651536#M1445035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sreeram, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the venets in Ztable.&lt;/P&gt;&lt;P&gt;You can make use of On Save event. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whe ever user enters a new entry and clicks on Save ....your program will get triggered in teh background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To execute a program in Background. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) CALL TRANSACTION... IN BACKGROUND TASK with the function module actually submitting the report OR&lt;/P&gt;&lt;P&gt;2) SUBMIT report... VIA JOB.. AND RETURN with use of the JOB_OPEN and JOB_CLOSE function modules&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For Reference :- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609" target="test_blank"&gt;http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=93454609&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Kittu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Kittu on Mar 17, 2010 9:06 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 Mar 2010 07:59:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/automatic-processing-of-program-in-background-when-table-gets-an-entry/m-p/6651536#M1445035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-03-17T07:59:40Z</dc:date>
    </item>
  </channel>
</rss>

