<?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 Application Server Directory Validation Problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-directory-validation-problem/m-p/9157457#M1710895</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;&lt;/P&gt;&lt;P&gt;Our requirement is validate the Application Server Directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that we are using "RZL_READ_DIR_LOCAL" this fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i pass the&amp;nbsp; wrong name of the directory its go to dump.&lt;/P&gt;&lt;P&gt; now how can i validate the Application Server Directory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We use another fm "FILE_VALIDATE_NAME" to validate the Application Server Directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this fm we pass the either correct or wrong Directory it shows the "Directory does not Exist".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using "windows 7" os.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What was the problem/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou,&lt;/P&gt;&lt;P&gt;Vishnu p.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 12 Nov 2012 11:33:34 GMT</pubDate>
    <dc:creator>vishnu_pallamreddy</dc:creator>
    <dc:date>2012-11-12T11:33:34Z</dc:date>
    <item>
      <title>Application Server Directory Validation Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-directory-validation-problem/m-p/9157457#M1710895</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;&lt;/P&gt;&lt;P&gt;Our requirement is validate the Application Server Directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for that we are using "RZL_READ_DIR_LOCAL" this fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when i pass the&amp;nbsp; wrong name of the directory its go to dump.&lt;/P&gt;&lt;P&gt; now how can i validate the Application Server Directory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We use another fm "FILE_VALIDATE_NAME" to validate the Application Server Directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in this fm we pass the either correct or wrong Directory it shows the "Directory does not Exist".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We are using "windows 7" os.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What was the problem/&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thankyou,&lt;/P&gt;&lt;P&gt;Vishnu p.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 11:33:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-directory-validation-problem/m-p/9157457#M1710895</guid>
      <dc:creator>vishnu_pallamreddy</dc:creator>
      <dc:date>2012-11-12T11:33:34Z</dc:date>
    </item>
    <item>
      <title>Re: Application Server Directory Validation Problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-directory-validation-problem/m-p/9157458#M1710896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pass exceptions to FM. IF the directorary is not there it does not dump.In this case sy-subrc will be 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER: p_fdir&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; type pfeflnamel DEFAULT '/usr/sap/tmp'.&lt;/P&gt;&lt;P&gt;data: begin of it_filedir occurs 10.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; include structure salfldir.&lt;BR /&gt;data: end of it_filedir.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RZL_READ_DIR_LOCAL'&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = p_fdir&lt;/P&gt;&lt;P&gt;&amp;nbsp; TABLES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; file_tbl&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = it_filedir&lt;/P&gt;&lt;P&gt;&amp;nbsp; EXCEPTIONS&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; argument_error = 1&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; not_found&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 2&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OTHERS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = 3.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 12 Nov 2012 13:19:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/application-server-directory-validation-problem/m-p/9157458#M1710896</guid>
      <dc:creator>former_member189779</dc:creator>
      <dc:date>2012-11-12T13:19:56Z</dc:date>
    </item>
  </channel>
</rss>

