<?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: using open dataset in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545255#M1266166</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;You can try with this ...KD_GET_FILENAME_ON_F4&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
       EXPORTING
            static        = 'X'
            mask          = '*.XLS'
       CHANGING
            file_name     = pa_fname
       EXCEPTIONS
            mask_too_long = 1
            OTHERS        = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the mask option you can provide the extension format in which you want to store the file.&lt;/P&gt;&lt;P&gt;and pa_fname will be parameter which will be having the file path after the funciton call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nitin Sikka on Apr 20, 2009 7:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Apr 2009 05:51:20 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-04-20T05:51:20Z</dc:date>
    <item>
      <title>using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545252#M1266163</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;I have to create a file using open dataset (and not gui download function)&lt;/P&gt;&lt;P&gt;the problem is , is when the user chooses a folder in the network by using its windwos shortcut the open dataset does not work.&lt;/P&gt;&lt;P&gt;do you know of a way to transform this shortcut into the real network path?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;naama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2009 13:11:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545252#M1266163</guid>
      <dc:creator>Naama</dc:creator>
      <dc:date>2009-04-19T13:11:15Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545253#M1266164</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Neema,&lt;/P&gt;&lt;P&gt;Little confused on your Issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;open dataset&lt;/STRONG&gt; is used to create/read existing file on Application server.&lt;/P&gt;&lt;P&gt;its not realated any how to GUI UPLOAD and dowlonad.&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;Shital&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Apr 2009 17:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545253#M1266164</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-19T17:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545254#M1266165</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;forget about gui download or open data set.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i need a function that get windows shrtcut (of a network path) and returns the real path.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;naama&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 05:41:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545254#M1266165</guid>
      <dc:creator>Naama</dc:creator>
      <dc:date>2009-04-20T05:41:23Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545255#M1266166</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;You can try with this ...KD_GET_FILENAME_ON_F4&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'KD_GET_FILENAME_ON_F4'
       EXPORTING
            static        = 'X'
            mask          = '*.XLS'
       CHANGING
            file_name     = pa_fname
       EXCEPTIONS
            mask_too_long = 1
            OTHERS        = 2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the mask option you can provide the extension format in which you want to store the file.&lt;/P&gt;&lt;P&gt;and pa_fname will be parameter which will be having the file path after the funciton call.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nitin Sikka on Apr 20, 2009 7:55 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 05:51:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545255#M1266166</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T05:51:20Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545256#M1266167</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this doesnt help me,&lt;/P&gt;&lt;P&gt;i nedd to convert the windows shortcut of a pth to ther real path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 06:03:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545256#M1266167</guid>
      <dc:creator>Naama</dc:creator>
      <dc:date>2009-04-20T06:03:42Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545257#M1266168</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I didnt get you. By window short cut what exactly do you refer to?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 06:06:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545257#M1266168</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T06:06:48Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545258#M1266169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;in windows you can create a shortcut to a network folder (S:\)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I need to find the real network folder the the shortcut represent - (&lt;BR /&gt;realpath\folder1)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 06:09:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545258#M1266169</guid>
      <dc:creator>Naama</dc:creator>
      <dc:date>2009-04-20T06:09:39Z</dc:date>
    </item>
    <item>
      <title>Re: using open dataset</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545259#M1266170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naama,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We can access any thing like this way, for this you need first write that file on application server and then you can read from there when needed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nitin.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Apr 2009 06:22:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/using-open-dataset/m-p/5545259#M1266170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-04-20T06:22:48Z</dc:date>
    </item>
  </channel>
</rss>

