<?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: Open Dataset to Presentation server batch mode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214101#M134313</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;OPEN DATA Sets -- For Uploading/Down loading fiels from Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please define a file path in your program and then use "OPEN DATASET L_FILE FOR OUTPUT ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the O/P data will write to that file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;*---opens application server file&lt;/P&gt;&lt;P&gt;    OPEN DATASET L_FILE FOR OUTPUT IN BINARY MODE.&lt;/P&gt;&lt;P&gt;    "encoding default.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;      LOOP AT I_TAB1.&lt;/P&gt;&lt;P&gt;        TRANSFER I_TAB1 TO L_FILE.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;*--- closes error file&lt;/P&gt;&lt;P&gt;      CLOSE DATASET L_FILE.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     message i000 with 'Unable to download PDF file'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&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;&lt;/P&gt;&lt;P&gt;Lanka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich : you are too fast and I am fully agree with Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lanka Murthy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 01 Mar 2006 20:01:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-03-01T20:01:15Z</dc:date>
    <item>
      <title>Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214099#M134311</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'd like to download an internal table to the presentation server. i.e. "C:\TEMP\MYFILE.TXT' in batch mode. Unfortunately, GUI_DOWNLOAD prevents this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All of my attempts to use OPEN DATASET don't create a file, either in foreground or background mode. I don't get an open file error but nothing gets created. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a way to do this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 19:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214099#M134311</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T19:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214100#M134312</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can not use OPEN DATASET to download or upload files to the presentation.  You can only use this to upload/download to the application server.  In doing this, it will work in both foreground and background.  There is no "easy" way to download to the presentation server from a background process.  I'm not saying that it can't be done, but you must jump thru a couple of hoops to do it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 19:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214100#M134312</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-03-01T19:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214101#M134313</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;OPEN DATA Sets -- For Uploading/Down loading fiels from Application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please define a file path in your program and then use "OPEN DATASET L_FILE FOR OUTPUT ".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then the O/P data will write to that file on application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example:&lt;/P&gt;&lt;P&gt;*---opens application server file&lt;/P&gt;&lt;P&gt;    OPEN DATASET L_FILE FOR OUTPUT IN BINARY MODE.&lt;/P&gt;&lt;P&gt;    "encoding default.&lt;/P&gt;&lt;P&gt;    IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;      LOOP AT I_TAB1.&lt;/P&gt;&lt;P&gt;        TRANSFER I_TAB1 TO L_FILE.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;P&gt;*--- closes error file&lt;/P&gt;&lt;P&gt;      CLOSE DATASET L_FILE.&lt;/P&gt;&lt;P&gt;    ELSE.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     message i000 with 'Unable to download PDF file'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    ENDIF.&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;&lt;/P&gt;&lt;P&gt;Lanka&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rich : you are too fast and I am fully agree with Rich.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Lanka Murthy&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 20:01:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214101#M134313</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T20:01:15Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214102#M134314</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, folks. I sort of figured that it would be difficult because how would the batch job know who/where the job was started. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'll contact my basis folks and have them create an output directory for the user.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 20:41:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214102#M134314</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T20:41:17Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214103#M134315</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Exactly, once you are in the background, the process knows nothing about the frontend client.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 20:48:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214103#M134315</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-03-01T20:48:30Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214104#M134316</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What we do is run a batch job that creates a file on the application server. Then the user runs a program from R3 that uploads the file from the server and uses something like GUI_DOWNLOAD to write to the PC. You could as well open EXCEL directly in the second job.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 01 Mar 2006 20:59:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214104#M134316</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-01T20:59:46Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214105#M134317</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks, Rob. &lt;/P&gt;&lt;P&gt;This is the scenario I decided to go with. &lt;/P&gt;&lt;P&gt;The users whine a bit, but cest la vie &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Mar 2006 16:13:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214105#M134317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-03-02T16:13:47Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214106#M134318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm got encountered with the same problem. We have generated file on application server successfully but download to presentation server is not working as i have used gui_download.We have set batchjob but because we used download function module job is getting cancelled as this is foreground activity.&lt;/P&gt;&lt;P&gt;We removed gui_download code and i tried to download file using open dataset and transfer method but it is not writing file on ps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest other way to achieve the requirement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 13 Mar 2014 14:56:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214106#M134318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-13T14:56:38Z</dc:date>
    </item>
    <item>
      <title>Re: Open Dataset to Presentation server batch mode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214107#M134319</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;Ask the admins to create "mount"/"share" of AS folder that users can access from their clients..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Janis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Mar 2014 00:37:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/open-dataset-to-presentation-server-batch-mode/m-p/1214107#M134319</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-03-14T00:37:10Z</dc:date>
    </item>
  </channel>
</rss>

