<?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: read a file from application server in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043150#M1351146</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;Change the open dataset statement and check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET fname FOR output IN TEXT MODE ENCODING DEFAULT.   "previous
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET fname FOR INPUT IN TEXT MODE ENCODING DEFAULT.  "corrected
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Aug 2009 09:24:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-08-17T09:24:41Z</dc:date>
    <item>
      <title>read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043141#M1351137</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 want to read a file from application server using read dataset. for that i have written the code as&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;select * from zbdclog INTO CORRESPONDING FIELDS OF TABLE i_bdclog&lt;/P&gt;&lt;P&gt;                                                where RICEFID = p_ricef&lt;/P&gt;&lt;P&gt;                                                 and  username = p_user.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt; loop at i_bdclog into wg_bdclog.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt; fname = wg_bdclog-filepath.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET fname FOR output IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;P&gt; IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;     READ DATASET fname INTO wg_bdclog1-filepath.&lt;/P&gt;&lt;P&gt;     append wg_bdclog1 to i_bdclog1.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  CLOSE DATASET fname.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt; endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anyone tell me where is the problem as the values of sy-subrc = 8, so its not getting inside the loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:13:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043141#M1351137</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:13:58Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043142#M1351138</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Swarnali.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select * from zbdclog INTO CORRESPONDING FIELDS OF TABLE i_bdclog
where RICEFID = p_ricef
and username = p_user.
IF sy-subrc = 0.
* Do porcessing
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this sy-subrc is failing goto SE16 &amp;amp; check if there is any data in the table &lt;STRONG&gt;zbdclog&lt;/STRONG&gt; for &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;RICEFID = p_ricef and username = p_user&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:18:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043142#M1351138</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-08-17T09:18:08Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043143#M1351139</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;Check the data base table for the entries&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AS u want to read the data from application server u need to write like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET &amp;lt;DATASET NAME&amp;gt; for INPUT in text mode endoing default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT-&amp;gt;To write into the application server&lt;/P&gt;&lt;P&gt;INPUT-&amp;gt;To read from application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:19:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043143#M1351139</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-08-17T09:19:22Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043144#M1351140</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;Please check if there are any corresponding records available for your input that you have used in the select query i.e the ricefid and username.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And moreover, to read data from the application server, you use something like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET P_FNAME2 FOR INPUT IN BINARY MODE.
  READ DATASET P_FNAME2 INTO WA_SALESDETAILS.
  APPEND WA_SALESDETAILS TO T_SALESDETAILS.
  CLEAR WA_SALESDETAILS.
CLOSE DATASET P_FNAME2.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Nitwick on Aug 17, 2009 2:50 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043144#M1351140</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043145#M1351141</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Check in table  zbdclog  whether any entries exist matching values of p_ricef and p_user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:21:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043145#M1351141</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:21:05Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043146#M1351142</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can use transaction CG3Y&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:21:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043146#M1351142</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-08-17T09:21:43Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043147#M1351143</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 have checked, records are available, the second sy-subrc is failing, i,e. its not going to read dataset&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Swarnali&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043147#M1351143</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:22:08Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043148#M1351144</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;Did u try to change ur code as i suggested&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AS u want to read the data from application server u need to write like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET &amp;lt;DATASET NAME&amp;gt; for INPUT in text mode endoing default.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT-&amp;gt;To write into the application server&lt;/P&gt;&lt;P&gt;INPUT-&amp;gt;To read from application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:24:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043148#M1351144</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2009-08-17T09:24:34Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043149#M1351145</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;even if i use FOR INPUT , still i am getting this error, please help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043149#M1351145</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043150#M1351146</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;Change the open dataset statement and check&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET fname FOR output IN TEXT MODE ENCODING DEFAULT.   "previous
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
OPEN DATASET fname FOR INPUT IN TEXT MODE ENCODING DEFAULT.  "corrected
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043150#M1351146</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043151#M1351147</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 used for input , still the sy-subrc value is 8 just before the read dataset&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:25:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043151#M1351147</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:25:51Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043152#M1351148</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Also check whether you have authorization for reading,writing etc&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:25:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043152#M1351148</guid>
      <dc:creator>kesavadas_thekkillath</dc:creator>
      <dc:date>2009-08-17T09:25:59Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043153#M1351149</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 think there is a problem in ur select query... ur saying select * and putting those in CORRESPONDING FIELDS..... Check the declaration or ur internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AND &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the declaration of the field FNAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : FNAME TYPE STRING.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:26:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043153#M1351149</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:26:17Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043154#M1351150</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;Do you want to read data from the application server. Then you gotto use the syntax &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET P_FNAME FOR INPUT IN BINARY MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT is for writing data into application server. Your file wouldnt have been existing in the application server. So it is possibly returning a 8 for the sy-subrc.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:26:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043154#M1351150</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:26:27Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043155#M1351151</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;OPEN DATASET fname FOR INPUT IN TEXT MODE ENCODING DEFAULT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:26:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043155#M1351151</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:26:46Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043156#M1351152</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;After the select statement, check if i_bdclog -filepath has a valid application server file path.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:27:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043156#M1351152</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:27:02Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043157#M1351153</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Quick check if the filepath exists in AL11. If yes, then go to the next lines &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just before the OPEN DATASET statement you can call the auth. obj S_DATASET (or the FM: AUTHORITY_CHECK_DATASET).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you donot have the access to read/write files from the folder.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR,&lt;/P&gt;&lt;P&gt;Suhas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Suhas Saha on Aug 17, 2009 11:31 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:29:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043157#M1351153</guid>
      <dc:creator>SuhaSaha</dc:creator>
      <dc:date>2009-08-17T09:29:14Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043158#M1351154</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 have used IN BINARY MODE as well as i checked whether it has a valid filepath, but still i m getting the sy-subrc = 8.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:29:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043158#M1351154</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:29:57Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043159#M1351155</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;Check the mode in which you are trying to open the file. Please do a F1 on the modes. See if it works with BINARY MODE. As suggested, try to use ENCODING DEFAULT addition to the OPEN DATASET.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:30:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043159#M1351155</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-08-17T09:30:21Z</dc:date>
    </item>
    <item>
      <title>Re: read a file from application server</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043160#M1351156</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;before this i have used to create a file in application server and it worked fine so i think i have the authrosation, this is nt the problem, any other advice?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Aug 2009 09:31:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/read-a-file-from-application-server/m-p/6043160#M1351156</guid>
      <dc:creator>SwarnaliBasu</dc:creator>
      <dc:date>2009-08-17T09:31:52Z</dc:date>
    </item>
  </channel>
</rss>

