<?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: Connect external file server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391022#M531704</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can store it in a table TVARVC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create 2 different entries for username and pwd in TVARVC. You can change them manually or by program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can create your own Z table and store it there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use SET/GET PARAMETER. Look at this:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="475929"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 03:16:44 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T03:16:44Z</dc:date>
    <item>
      <title>Connect external file server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391018#M531700</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 want to connect an external file server, and used the function WS_FILENAME_GET to search file list on the server.&lt;/P&gt;&lt;P&gt;During the process , I should input the username and pwd of the server.&lt;/P&gt;&lt;P&gt;How can I save the username and pwd, so the user needn't input&lt;/P&gt;&lt;P&gt;username and pwd once executing the program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 02:37:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391018#M531700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T02:37:39Z</dc:date>
    </item>
    <item>
      <title>Re: Connect external file server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391019#M531701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;WS_FILENAME_GET  - local server ( presentation server )..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you want to connect unix server then use opendatset command.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 02:42:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391019#M531701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T02:42:33Z</dc:date>
    </item>
    <item>
      <title>Re: Connect external file server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391020#M531702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;See the some notes for unix server and i used ftp command&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Below is the code to get all the files falling in the directory...... .&lt;/P&gt;&lt;P&gt;data: begin of t_tabl occurs 0,&lt;/P&gt;&lt;P&gt;          line(132),&lt;/P&gt;&lt;P&gt;      end of t_tabl,&lt;/P&gt;&lt;P&gt;data: lc_command(100) type c.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Get all the file name falling under specified directory...&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  lc_command(3)    = 'ls '.&lt;/P&gt;&lt;P&gt;  lc_command+3(45) = p_dir. " Directory of file path&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call 'SYSTEM' id 'COMMAND' field lc_command&lt;/P&gt;&lt;P&gt;                id 'TAB'     field t_tabl-&lt;STRONG&gt;sys&lt;/STRONG&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check any files exits in the directory.......................&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  if t_tabl[] is initial.&lt;/P&gt;&lt;P&gt;    message e006 with 'No files exist in the specified directory ' p_dir.&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Above step will give you the all the fiels falling under the directory specified. But you have to loop through the internal table t_tabl to find the required files  for eg: if you know the start few letters of the file name which are going to be constant always....like CWD_CNF*..&lt;/P&gt;&lt;P&gt;To delete the files.&lt;/P&gt;&lt;P&gt;loop at t_tabl.&lt;/P&gt;&lt;P&gt;   lc_command(3) = 'rm'.&lt;/P&gt;&lt;P&gt;   lc_command+3(45) = t_tabl-line.&lt;/P&gt;&lt;P&gt;   call 'SYSTEM' id 'COMMAND' field lc_command&lt;/P&gt;&lt;P&gt;                        id 'TAB'     field t_tabl-&lt;STRONG&gt;sys&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 02:47:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391020#M531702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T02:47:42Z</dc:date>
    </item>
    <item>
      <title>Re: Connect external file server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391021#M531703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The file server  just like an sharing file. And i use WS_FILENAME_GET can find all&lt;/P&gt;&lt;P&gt;the files. Now I just want to keep the user name and pwd of the sharing file.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 02:51:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391021#M531703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T02:51:22Z</dc:date>
    </item>
    <item>
      <title>Re: Connect external file server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391022#M531704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can store it in a table TVARVC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create 2 different entries for username and pwd in TVARVC. You can change them manually or by program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can create your own Z table and store it there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or you can use SET/GET PARAMETER. Look at this:&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="475929"&gt;&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 03:16:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/connect-external-file-server/m-p/2391022#M531704</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T03:16:44Z</dc:date>
    </item>
  </channel>
</rss>

