<?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: Avoid file download overlapping on Application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245468#M1526911</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have files being stored more frequently the one per second?&amp;nbsp; Amazing, but possible I suppose.&amp;nbsp; A simple question....you are issuing "get time" command just before constructing each new time stamp, aren't you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Apr 2012 13:12:49 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2012-04-06T13:12:49Z</dc:date>
    <item>
      <title>Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245461#M1526904</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;I have a functionality in which I am reading some files from application server, processing it and then downloading files with &lt;/P&gt;&lt;P&gt;data in it. The download filename is of format &lt;STRONG&gt;file_new_&amp;lt;timestamp&amp;gt;&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the problem is, due to fast processing the timestamp is not changing and thus instead of multiple files generating on application server only one file is generating.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A temporary solution is to use WAIT UP TO ... but this will seriously hit my programs performance..as the number of files are huge.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Sep 2010 12:34:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245461#M1526904</guid>
      <dc:creator>premal_mistry2</dc:creator>
      <dc:date>2010-09-03T12:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245462#M1526905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;While getting timestamp use field of type TIMESTAMPL not TIMESTAMP. It is accurate to &lt;STRONG&gt;nano&lt;/STRONG&gt; seconds so you will not have any issues with unique name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Sep 2010 13:45:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245462#M1526905</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-09-03T13:45:57Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245463#M1526906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Marcin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the reply... my requirement is that the filename should contain only TIMESTAMP and not TIMESTAMPL. I have already considered this but it is not applicable in my case ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Sep 2010 15:01:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245463#M1526906</guid>
      <dc:creator>premal_mistry2</dc:creator>
      <dc:date>2010-09-03T15:01:37Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245464#M1526907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;That's seems troublesome then. What you can do instead is to consider different  directories as destination place. As the name wouldn't be unique for each second you could generate as many subcatalogs as files generated in one second. Tehn go back to the first and upload in the same sequence all the rest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This would probalby produce thousands of dirs but as long as you have some automation process for downloading them back on presentation server this should not be a problem. I know it's a dirty way but the only one which comes to my mind. The best would be adjusting the requirements to include TIMESTAMPL in the name though.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Marcin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 08:06:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245464#M1526907</guid>
      <dc:creator>MarcinPciak</dc:creator>
      <dc:date>2010-09-06T08:06:40Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245465#M1526908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Macin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I agree with you ... that sure is a dirty way.. anyways thanks for the reply. Will lookout for more solutions.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 10:55:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245465#M1526908</guid>
      <dc:creator>premal_mistry2</dc:creator>
      <dc:date>2010-09-06T10:55:52Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245466#M1526909</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;It's not the best solution ever but...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Getting the timestamp at the beggining of the program and adding 1 to it for each new file created??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The timestamp won't be real but it seems it can't be real and unique at the same time.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rafa&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Sep 2010 12:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245466#M1526909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2010-09-06T12:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245467#M1526910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use the function module OCS_GET_FILE_INFO . It returns the time stamp of each and every file in the given path&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2012 10:58:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245467#M1526910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-06T10:58:35Z</dc:date>
    </item>
    <item>
      <title>Re: Avoid file download overlapping on Application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245468#M1526911</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have files being stored more frequently the one per second?&amp;nbsp; Amazing, but possible I suppose.&amp;nbsp; A simple question....you are issuing "get time" command just before constructing each new time stamp, aren't you?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Apr 2012 13:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/avoid-file-download-overlapping-on-application-server/m-p/7245468#M1526911</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2012-04-06T13:12:49Z</dc:date>
    </item>
  </channel>
</rss>

