<?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: what is open data set and close data set in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720484#M314521</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;Open Dataset is used to read or write on to application server ... other than that i am not sure that there exists any way to do the same ... here is a short description for that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILE HANDLING IN SAP&lt;/P&gt;&lt;P&gt;Introduction&lt;/P&gt;&lt;P&gt;&amp;#149; Files on application server are sequential files.&lt;/P&gt;&lt;P&gt;&amp;#149; Files on presentation server / workstation are local files. &lt;/P&gt;&lt;P&gt;&amp;#149; A sequential file is also called a dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Handling of Sequential file&lt;/P&gt;&lt;P&gt;Three steps are involved in sequential file handling&lt;/P&gt;&lt;P&gt;&amp;#149; OPEN&lt;/P&gt;&lt;P&gt;&amp;#149; PROCESS&lt;/P&gt;&lt;P&gt;&amp;#149; CLOSE&lt;/P&gt;&lt;P&gt;Here processing of file can be READING a file or WRITING on to a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN FILE&lt;/P&gt;&lt;P&gt;Before data can be processed, a file needs to be opened.&lt;/P&gt;&lt;P&gt;After processing file is closed.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;OPEN DATASET &amp;lt;file name&amp;gt; FOR {OUTPUT/INPUT/APPENDING}&lt;/P&gt;&lt;P&gt;IN {TEXT/BINARY} MODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement returns SY_SUBRC as 0 for successful opening of file or 8, if unsuccessful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT: Opens the file for writing. If the dataset already exists, this will place the cursor at the start of the dataset, the old contents get deleted at the end of the program or when the CLOSE DATASET is encountered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT: Opens a file for READ and places the cursor at the beginning of the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR APPENDING: Opens the file for writing and places the cursor at the end of file. If the file does not exist, it is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BINARY MODE: The READ or TRANSFER will be character wise. Each time &amp;#145;n&amp;#146;&amp;#146; characters are READ or transferred. The next READ or TRANSFER will start from the next character position and not on the next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN TEXT MODE: The READ or TRANSFER will start at the beginning of a new line each time. If for READ, the destination is shorter than the source, it gets truncated. If destination is longer, then it is padded with spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defaults: If nothing is mentioned, then defaults are FOR INPUT and in BINARY MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS FILE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing a file involves READing the file or Writing on to file TRANSFER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSFER Statement&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;TRANSFER &amp;lt;field&amp;gt; TO &amp;lt;file name&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;Field&amp;gt; can also be a field string / work area / DDIC structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each transfer statement writes a statement to the dataset. In binary mode, it writes the length of the field to the dataset. In text mode, it writes one line to the dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file is not already open, TRANSFER tries to OPEN file FOR OUTPUT (IN BINARY MODE) or using the last OPEN DATASET statement for this file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF FILE HANDLING, TRANSFER IS THE ONLY STATEMENT WHICH DOES NOT RETURN SY-SUBRC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ Statement&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;READ DATASET &amp;lt;file name&amp;gt; INTO &amp;lt;field&amp;gt;. &lt;/P&gt;&lt;P&gt;&amp;lt;Field&amp;gt; can also be a field string / work area / DDIC structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each READ will get one record from the dataset. In binary mode it reads the length of the field and in text mode it reads each line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSE FILE: &lt;/P&gt;&lt;P&gt;The program will close all sequential files, which are open at the end of the program. However, it is a good programming practice to explicitly close all the datasets that were opened.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLOSE DATASET &amp;lt;file name&amp;gt;.
SY-SUBRC will be set to 0 or 8 depending on whether the CLOSE is successful or not.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DELETE FILE:
A dataset can be deleted.
Syntax:
DELETE DATASET &amp;lt;file name&amp;gt;.
SY-SUBRC will be set to 0 or 8 depending on whether the DELETE is successful or not.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Pseudo logic for processing the sequential files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reading:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Open dataset for input in a particular mode.
Start DO loop.
Read dataset into a field.
If READ is not successful.
Exit the loop.
Endif.
Do relevant processing for that record.
End the do loop.
Close the dataset.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For writing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open dataset for output / Appending in a particular mode.&lt;/P&gt;&lt;P&gt;Populate the field that is to be transferred.&lt;/P&gt;&lt;P&gt;TRANSFER the filed to a dataset.&lt;/P&gt;&lt;P&gt;Close the dataset.&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;Anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 11 Nov 2006 09:31:30 GMT</pubDate>
    <dc:creator>anversha_s</dc:creator>
    <dc:date>2006-11-11T09:31:30Z</dc:date>
    <item>
      <title>what is open data set and close data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720482#M314519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what is open data set and close data set,&lt;/P&gt;&lt;P&gt;how to use the files in sap directories ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2006 08:08:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720482#M314519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-11T08:08:26Z</dc:date>
    </item>
    <item>
      <title>Re: what is open data set and close data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720483#M314520</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;OPEN DATASET stmt is used to open a file on applicaiton server either for reading or writing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Eg: OPEN DATASET &amp;lt;dsn&amp;gt; FOR [OUTPUT/INPUT] ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  OUTPUT in above stmt identifies that we are opening the file for writing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   INPUT in above stmt identified that we are opening the file for output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLOSE DATASET &amp;lt;dsn&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Above stmt is used to close the file that is opened.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Apart from the above stmts, please keep note of stmts READ DATASET and TRANSFER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  READ DATASET - when we open a file for reading/uploading we use READ DATASET stmt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Eg: READ DATASET &amp;lt;dsn&amp;gt; INTO &amp;lt;wa&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  TRANSFER - is the statement we use for writing data to a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Eg: TRANSFER &amp;lt;wa&amp;gt; TO &amp;lt;dsn&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Source Code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Reading Data from Application Server&amp;lt;/b&amp;gt;:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;     open dataset fname for input in text mode encoding default.
     if sy-subrc ne 0.
        write:/ 'Unable to open file:', fname.
     else.
        do.
           read datasset fname into &amp;lt;wa&amp;gt;.
           if sy-subrc ne o.
              exit.
           else.
              append &amp;lt;wa&amp;gt; to itab.
           endif.
           close dataset fname.
        enddo.
     endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Writing Data to Application Server&amp;lt;/b&amp;gt;:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;     open dataset fname for output in text mode encoding default.
     if sy-subrc ne 0.
        write:/ 'Unable to open file:', fname.
     else.
        loop at itab.
               transfer itab to fname.
        endloop.
        close dataset fname.
     endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Hope this info gives you some idea.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards&lt;/P&gt;&lt;P&gt;Eswar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2006 08:22:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720483#M314520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-11T08:22:14Z</dc:date>
    </item>
    <item>
      <title>Re: what is open data set and close data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720484#M314521</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;Open Dataset is used to read or write on to application server ... other than that i am not sure that there exists any way to do the same ... here is a short description for that &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FILE HANDLING IN SAP&lt;/P&gt;&lt;P&gt;Introduction&lt;/P&gt;&lt;P&gt;&amp;#149; Files on application server are sequential files.&lt;/P&gt;&lt;P&gt;&amp;#149; Files on presentation server / workstation are local files. &lt;/P&gt;&lt;P&gt;&amp;#149; A sequential file is also called a dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Handling of Sequential file&lt;/P&gt;&lt;P&gt;Three steps are involved in sequential file handling&lt;/P&gt;&lt;P&gt;&amp;#149; OPEN&lt;/P&gt;&lt;P&gt;&amp;#149; PROCESS&lt;/P&gt;&lt;P&gt;&amp;#149; CLOSE&lt;/P&gt;&lt;P&gt;Here processing of file can be READING a file or WRITING on to a file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN FILE&lt;/P&gt;&lt;P&gt;Before data can be processed, a file needs to be opened.&lt;/P&gt;&lt;P&gt;After processing file is closed.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;OPEN DATASET &amp;lt;file name&amp;gt; FOR {OUTPUT/INPUT/APPENDING}&lt;/P&gt;&lt;P&gt;IN {TEXT/BINARY} MODE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This statement returns SY_SUBRC as 0 for successful opening of file or 8, if unsuccessful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OUTPUT: Opens the file for writing. If the dataset already exists, this will place the cursor at the start of the dataset, the old contents get deleted at the end of the program or when the CLOSE DATASET is encountered.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INPUT: Opens a file for READ and places the cursor at the beginning of the file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FOR APPENDING: Opens the file for writing and places the cursor at the end of file. If the file does not exist, it is generated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BINARY MODE: The READ or TRANSFER will be character wise. Each time &amp;#145;n&amp;#146;&amp;#146; characters are READ or transferred. The next READ or TRANSFER will start from the next character position and not on the next line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN TEXT MODE: The READ or TRANSFER will start at the beginning of a new line each time. If for READ, the destination is shorter than the source, it gets truncated. If destination is longer, then it is padded with spaces.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Defaults: If nothing is mentioned, then defaults are FOR INPUT and in BINARY MODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS FILE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Processing a file involves READing the file or Writing on to file TRANSFER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TRANSFER Statement&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;TRANSFER &amp;lt;field&amp;gt; TO &amp;lt;file name&amp;gt;.&lt;/P&gt;&lt;P&gt;&amp;lt;Field&amp;gt; can also be a field string / work area / DDIC structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each transfer statement writes a statement to the dataset. In binary mode, it writes the length of the field to the dataset. In text mode, it writes one line to the dataset.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the file is not already open, TRANSFER tries to OPEN file FOR OUTPUT (IN BINARY MODE) or using the last OPEN DATASET statement for this file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF FILE HANDLING, TRANSFER IS THE ONLY STATEMENT WHICH DOES NOT RETURN SY-SUBRC&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;READ Statement&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;P&gt;READ DATASET &amp;lt;file name&amp;gt; INTO &amp;lt;field&amp;gt;. &lt;/P&gt;&lt;P&gt;&amp;lt;Field&amp;gt; can also be a field string / work area / DDIC structure.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Each READ will get one record from the dataset. In binary mode it reads the length of the field and in text mode it reads each line.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLOSE FILE: &lt;/P&gt;&lt;P&gt;The program will close all sequential files, which are open at the end of the program. However, it is a good programming practice to explicitly close all the datasets that were opened.&lt;/P&gt;&lt;P&gt;Syntax:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CLOSE DATASET &amp;lt;file name&amp;gt;.
SY-SUBRC will be set to 0 or 8 depending on whether the CLOSE is successful or not.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DELETE FILE:
A dataset can be deleted.
Syntax:
DELETE DATASET &amp;lt;file name&amp;gt;.
SY-SUBRC will be set to 0 or 8 depending on whether the DELETE is successful or not.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Pseudo logic for processing the sequential files:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For reading:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Open dataset for input in a particular mode.
Start DO loop.
Read dataset into a field.
If READ is not successful.
Exit the loop.
Endif.
Do relevant processing for that record.
End the do loop.
Close the dataset.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For writing:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open dataset for output / Appending in a particular mode.&lt;/P&gt;&lt;P&gt;Populate the field that is to be transferred.&lt;/P&gt;&lt;P&gt;TRANSFER the filed to a dataset.&lt;/P&gt;&lt;P&gt;Close the dataset.&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;Anver&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if hlped pls mark points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2006 09:31:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720484#M314521</guid>
      <dc:creator>anversha_s</dc:creator>
      <dc:date>2006-11-11T09:31:30Z</dc:date>
    </item>
    <item>
      <title>Re: what is open data set and close data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720485#M314522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Chaitanya&lt;/P&gt;&lt;P&gt;The sequential files (ON APPLICATION SERVER) are called datasets. They are used for file handling in SAP.&lt;/P&gt;&lt;P&gt; 	&lt;/P&gt;&lt;P&gt;OPEN DATASET [DATASET NAME]          FOR [OUTPUT / INPUT / APPENDING]&lt;/P&gt;&lt;P&gt;                                                                        IN [BINARY / TEXT] MODE&lt;/P&gt;&lt;P&gt;                                                                        AT POSITION [POSITION]&lt;/P&gt;&lt;P&gt;                                                                        MESSAGE [FIELD]&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;READ DATASET [DATASET NAME] INTO [FIELD]&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;DELETE DATASET [DATASET NAME]&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CLOSE DATASET [DATASET NAME]&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;TRANSFER [FIELD] TO [DATASET NAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raghav&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2006 09:43:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720485#M314522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-11T09:43:06Z</dc:date>
    </item>
    <item>
      <title>Re: what is open data set and close data set</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720486#M314523</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Chaitanya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When ever we r trying to access the data from the application server we have to use open data set to read the data and close dataset for close that file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AL11 is the tcode to see the file in sap Directory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Murthy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 11 Nov 2006 09:46:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/what-is-open-data-set-and-close-data-set/m-p/1720486#M314523</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-11-11T09:46:43Z</dc:date>
    </item>
  </channel>
</rss>

