<?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: Error reading file with function module RZL_READ_DIR_LOCAL in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088174#M732462</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK - you sent me an e-mail with a screen shot showing what you described.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) I guess it is possible - this FM is not released for customer use, so you use it at your own peril. Maybe ALERTS doesn't return a non-zero return code if it doesn't find anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You hadn't selected upper/lower case like I first suggested. Unix files are case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) There must be somnething else going on here:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  call 'ALERTS'  id 'ADMODE'       field ad_rzl
                 id 'OPCODE'       field rzl_op_rd_dir
                 id 'FILE_NAME'    field full_name
                 id 'DIR_TBL'      field line_tbl-*sys*.

  case sy-subrc.
    when 0.   loop at line_tbl.
                file_tbl-size = line_tbl(11).
                file_tbl-name = line_tbl+12.
                append file_tbl.
              endloop.
    when others.  raise not_found.
  endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think file_tbl is somehow retaining entries from a previous execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 22 Nov 2007 21:29:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-22T21:29:33Z</dc:date>
    <item>
      <title>Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088169#M732457</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'm having a problem reading files from the application server using function module RZL_READ_DIR_LOCAL. The function module returns the exception NOT_FOUND when I call it to read a file that I known is on the server at the path specified. I traced the problem to system function call - ALERTS in the function module. Your help will be appreciated.&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 19:04:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088169#M732457</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T19:04:32Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088170#M732458</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Works fine for me. make sure you have access to that directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;directory path should be as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;wlappserver\directory\&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Where directory is a share created on the app Server. I assume SAPSERVICE user should have access to this directory as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 19:26:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088170#M732458</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T19:26:49Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088171#M732459</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Are you calling it from SE37 or a custom program? It doesn't seem to work from SE37.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;(Yes it does - you have to check "case sensitivity".)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 19:27:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088171#M732459</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T19:27:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088172#M732460</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Thanks for the suggestions. I checked the function module again and it seems that it is returning the data from the file via the table parameter even though the exception NOT_FOUND is thrown. Is this normal for this function module?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 20:32:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088172#M732460</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T20:32:36Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088173#M732461</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Normal? I don't think it's possible. Please re-check your analysis.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 20:56:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088173#M732461</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T20:56:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088174#M732462</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK - you sent me an e-mail with a screen shot showing what you described.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) I guess it is possible - this FM is not released for customer use, so you use it at your own peril. Maybe ALERTS doesn't return a non-zero return code if it doesn't find anything.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) You hadn't selected upper/lower case like I first suggested. Unix files are case sensitive.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) There must be somnething else going on here:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  call 'ALERTS'  id 'ADMODE'       field ad_rzl
                 id 'OPCODE'       field rzl_op_rd_dir
                 id 'FILE_NAME'    field full_name
                 id 'DIR_TBL'      field line_tbl-*sys*.

  case sy-subrc.
    when 0.   loop at line_tbl.
                file_tbl-size = line_tbl(11).
                file_tbl-name = line_tbl+12.
                append file_tbl.
              endloop.
    when others.  raise not_found.
  endcase.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think file_tbl is somehow retaining entries from a previous execution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rob&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: &lt;/P&gt;&lt;P&gt;        Rob Burbank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 21:29:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088174#M732462</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T21:29:33Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088175#M732463</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;I have an issue reading file using the function module RZL_READ_FILE&lt;/P&gt;&lt;P&gt;the function module is not reading the complete file. it reads only 10,000 lines in to the internal table&lt;/P&gt;&lt;P&gt;any idea on this issue ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 22 Mar 2010 16:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088175#M732463</guid>
      <dc:creator>anesh_kumar</dc:creator>
      <dc:date>2010-03-22T16:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088176#M732464</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Rob.&lt;/P&gt;&lt;P&gt;Thank you so much. It solved my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 14:02:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088176#M732464</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-25T14:02:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error reading file with function module RZL_READ_DIR_LOCAL</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088177#M732465</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;This message was moderated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Mar 2016 23:41:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-reading-file-with-function-module-rzl-read-dir-local/m-p/3088177#M732465</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-03-08T23:41:37Z</dc:date>
    </item>
  </channel>
</rss>

