<?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: dynamic server path in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043877#M720482</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi William,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path should be of type rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of hardcoding the filepath, you can use the FM &amp;lt;b&amp;gt;/SAPDMC/LSM_F4_SERVER_FILE&amp;lt;/b&amp;gt; at the event 'AT SELECTION SCREEN ON VALUE-REQUEST'.  This will provide an F4 help for the field (for filepath) and the user will be able to select any path in the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PLZ Reward Points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2007 07:11:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-26T07:11:33Z</dc:date>
    <item>
      <title>dynamic server path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043875#M720480</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone tell me if changing the line below--&amp;gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SERVER_PATH TYPE string VALUE '\bwdevtbwdtemp',&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to this will work--&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if sy-sysid = 'BWD'.
server_path TYPE string VALUE  '\bwdevtbwdtemp'.
elseif sy-sysid = 'BWP'.
server_path TYPE string VALUE  '\bwpsrvbwdtemp'.
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or is there a better way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 07:04:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043875#M720480</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T07:04:16Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic server path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043876#M720481</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi William,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it will work and there is nothing wrong in this as I told earlier also.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Atish&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 07:07:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043876#M720481</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T07:07:43Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic server path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043877#M720482</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi William,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Path should be of type rlgrap-filename.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Instead of hardcoding the filepath, you can use the FM &amp;lt;b&amp;gt;/SAPDMC/LSM_F4_SERVER_FILE&amp;lt;/b&amp;gt; at the event 'AT SELECTION SCREEN ON VALUE-REQUEST'.  This will provide an F4 help for the field (for filepath) and the user will be able to select any path in the application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;PLZ Reward Points if helpful&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 07:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043877#M720482</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T07:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic server path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043878#M720483</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 have to change the code like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : server_path TYPE string .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case sy-sysid&lt;/P&gt;&lt;P&gt;when  'BWD'.&lt;/P&gt;&lt;P&gt;  server_path = '&lt;BR /&gt;bwdevt\bwdtemp'.&lt;/P&gt;&lt;P&gt;case 'BWP'.&lt;/P&gt;&lt;P&gt;  server_path =  '&lt;BR /&gt;bwpsrv\bwdtemp'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reward if helpful.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 07:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043878#M720483</guid>
      <dc:creator>varma_narayana</dc:creator>
      <dc:date>2007-10-26T07:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: dynamic server path</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043879#M720484</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does this force the user to choose the server path?  i guess they wont know what to enter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 07:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-server-path/m-p/3043879#M720484</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T07:32:50Z</dc:date>
    </item>
  </channel>
</rss>

