<?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: Small doubt in open dataset syntax in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533827#M850184</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to transactions CZ3Y  and CZ3Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the file exists or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 27 Feb 2008 14:57:34 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-27T14:57:34Z</dc:date>
    <item>
      <title>Small doubt in open dataset syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533825#M850182</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Gurus,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a small doubt in open dataset, i want to know the correct &lt;STRONG&gt;syntax for open dataset in verson 4.6C.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actually i written the syntax as &lt;/P&gt;&lt;P&gt;  OPEN DATASET ds_name FOR OUTPUT IN TEXT MODE .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it wont write any file in that path, its saying file not available. Plz guid this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;lt;REMOVED BY MODERATOR&amp;gt;&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Mohana.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Alvaro Tejada Galindo on Feb 27, 2008 11:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:44:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533825#M850182</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:44:57Z</dc:date>
    </item>
    <item>
      <title>Re: Small doubt in open dataset syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533826#M850183</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;Check this sample:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    OPEN DATASET FILENAME FOR OUTPUT IN TEXT MODE.
    IF SY-SUBRC NE 0.
      MESSAGE S041(S9) WITH FILENAME.
      EXIT.
    ENDIF.
    LOOP AT LT_TAB INTO LR_TAB.
      TRANSFER LR_TAB TO FILENAME.
    ENDLOOP.
    IF SY-SUBRC = 0.
      CLOSE DATASET FILENAME.
      DESCRIBE TABLE LT_TAB LINES L_F_COUNT.
      SUBTRACT 1 FROM L_F_COUNT.
      MESSAGE I145 WITH L_F_COUNT FILENAME.
    ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vasanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:47:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533826#M850183</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:47:09Z</dc:date>
    </item>
    <item>
      <title>Re: Small doubt in open dataset syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533827#M850184</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Go to transactions CZ3Y  and CZ3Z.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the file exists or not&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:57:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533827#M850184</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:57:34Z</dc:date>
    </item>
    <item>
      <title>Re: Small doubt in open dataset syntax</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533828#M850185</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Syntax for that is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex :&lt;/P&gt;&lt;P&gt;  OPEN DATASET W_FILENAME_ACRO FOR OUTPUT IN &lt;/P&gt;&lt;P&gt;       TEXT MODE ENCODING DEFAULT&lt;/P&gt;&lt;P&gt;       WITH WINDOWS LINEFEED MESSAGE W_MESSAGES.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 27 Feb 2008 14:59:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/small-doubt-in-open-dataset-syntax/m-p/3533828#M850185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-27T14:59:38Z</dc:date>
    </item>
  </channel>
</rss>

