<?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: Hw to write a code for this object? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265286#M1017723</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use WAIT UNTIL option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WAIT UNTIL log_exp [UP TO sec SECONDS]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 09 Aug 2008 06:04:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-09T06:04:42Z</dc:date>
    <item>
      <title>Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265285#M1017722</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi sir,&lt;/P&gt;&lt;P&gt;when i execute this code it will prints 10 times hello sap. i want to execute by system itself means by by putting the time slice so hw to write a code for this object?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DO 10 TIMES.&lt;/P&gt;&lt;P&gt;  WRITE &lt;span class="lia-unicode-emoji" title=":confused_face:"&gt;😕&lt;/span&gt; 'HELLO SAP' color 3 on.&lt;/P&gt;&lt;P&gt;  write sy-index.&lt;/P&gt;&lt;P&gt;ENDDO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;patil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 05:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265285#M1017722</guid>
      <dc:creator>former_member754043</dc:creator>
      <dc:date>2008-08-09T05:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265286#M1017723</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use WAIT UNTIL option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WAIT UNTIL log_exp [UP TO sec SECONDS]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this link:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandra Sekhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 06:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265286#M1017723</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T06:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265287#M1017724</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;What I understand from your query that you want to give the number of times as input, and depending on that the output wil be displayed.Try this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Parameters:
   p_times type i.

DO p_times TIMES.
WRITE :/ 'HELLO SAP' color 3 on.
write sy-index.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 06:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265287#M1017724</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T06:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265288#M1017725</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rachu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  can you please elaborate your question..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you taking about Background job (SM36) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_bw30b/helpdata/en/c4/3a7f87505211d189550000e829fbbd/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_bw30b/helpdata/en/c4/3a7f87505211d189550000e829fbbd/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or WAIT UNTILL as chandra has told..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw04/helpdata/en/c6/13a228e9c5ca469fe7065387dc87be/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With luck,&lt;/P&gt;&lt;P&gt;Pritam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 07:01:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265288#M1017725</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T07:01:12Z</dc:date>
    </item>
    <item>
      <title>Re: Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265289#M1017726</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sir,&lt;/P&gt;&lt;P&gt;But i want to execute by background process means it automatically gives the output after some seconds of time.. so that kind of output hw to generate?&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;patil.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 07:12:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265289#M1017726</guid>
      <dc:creator>former_member754043</dc:creator>
      <dc:date>2008-08-09T07:12:06Z</dc:date>
    </item>
    <item>
      <title>Re: Hw to write a code for this object?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265290#M1017727</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;For that GOTO transaction SM36.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Define &lt;STRONG&gt;Job name&lt;/STRONG&gt; and in the &lt;STRONG&gt;step&lt;/STRONG&gt; button you can define the &lt;STRONG&gt;program&lt;/STRONG&gt; that will run. Then go to the button &lt;STRONG&gt;start condition&lt;/STRONG&gt; and in this select button &lt;STRONG&gt;Immediate&lt;/STRONG&gt;.In the below of the screen a button called &lt;STRONG&gt;period values&lt;/STRONG&gt; appear. Click the button , in this you can define the period of your job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it will help you.&lt;/P&gt;&lt;P&gt;&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;sujit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 09 Aug 2008 07:24:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/hw-to-write-a-code-for-this-object/m-p/4265290#M1017727</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-09T07:24:18Z</dc:date>
    </item>
  </channel>
</rss>

