<?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: SY-DATUM inside Parallel Processing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431099#M1550429</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I mean SY-UZEIT. I'm using both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Dec 2010 17:54:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2010-12-02T17:54:53Z</dc:date>
    <item>
      <title>SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431097#M1550427</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm working with parallel processing of multiple function modules using STARTING NEW TASK. I want to know how long is taking some subroutines inside these FM's. I'm passing SY-DATUM to an internal table at the beginning and at the end of some subroutines. When I check the internal tables returned by the FM's, the times are the same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Does SY-DATUM work in Parallel Processing? Does it store the time when the task begins?&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;Raú&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 17:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431097#M1550427</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T17:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431098#M1550428</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sy-datum contains a date...you're expecting the jobs to run more than one day?  probably not, so look at this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: lv_start type i,
                   lv_end type i,
                   lv_time type i,
                  lv_seconds type i.
get run time field lv_start.      "stores system clock in microseconds
   
* execute your step(s)...

get run time field lv_end.   "stores system clock in microseconds.

 lv_time = lv_end - lv_start.  "in microseconds (1/1000000 of a second). 
 lv_seconds =  lv_time / 1000000.  "wall clock seconds&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ...etc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 17:50:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431098#M1550428</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T17:50:52Z</dc:date>
    </item>
    <item>
      <title>Re: SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431099#M1550429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I mean SY-UZEIT. I'm using both.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 17:54:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431099#M1550429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T17:54:53Z</dc:date>
    </item>
    <item>
      <title>Re: SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431100#M1550430</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;The system data SY-UZEIT (but I suppose SY-DATUM too) is always the time when the process starts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to know the real data for a certain moment, you need to refresh them by statament GET TIME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the help for details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 18:20:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431100#M1550430</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T18:20:14Z</dc:date>
    </item>
    <item>
      <title>Re: SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431101#M1550431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;sy-uzeit wont work.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;just a simple test... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: t1 type i, t2 TYPE sy-uzeit, t3 type tzonref-tstamps.
DO 5  TIMES.
  wait UP TO 1 SECONDS.
  GET RUN TIME FIELD t1.
  GET TIME FIELD t2.
  get time STAMP FIELD t3.
  WRITE:/ sy-uzeit, ':', t1, ':', t2, ':', t3.
ENDDO.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so better you need to use GET TIME STAMP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 19:30:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431101#M1550431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T19:30:17Z</dc:date>
    </item>
    <item>
      <title>Re: SY-DATUM inside Parallel Processing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431102#M1550432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In Performance Tuning presentations, SAP shows GET RUN TIME command....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Dec 2010 19:34:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sy-datum-inside-parallel-processing/m-p/7431102#M1550432</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-12-02T19:34:04Z</dc:date>
    </item>
  </channel>
</rss>

