<?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: sequential file in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504038#M842779</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;U can view the files in the application server in transaction AL11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to create the file in application server copy this to a sample program and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS po_file(100) TYPE c DEFAULT '/usr/upi/out/test.dat'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET po_file FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF sy-subrc is INITIAL.&lt;/P&gt;&lt;P&gt;  w_data = 'This is a test file generated for learning'.&lt;/P&gt;&lt;P&gt; TRANSFER w_data TO po_file.&lt;/P&gt;&lt;P&gt;CLOSE DATASET po_file..&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE:/1 'Not able to open file'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing this go to AL11 and search for file test.dat. Double click on that file. U can see the text &lt;STRONG&gt;This is a test file generated for learning&lt;/STRONG&gt; in ur file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r not able to open the file then check and give some valid directory name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 01 Mar 2008 13:23:30 GMT</pubDate>
    <dc:creator>vinod_vemuru2</dc:creator>
    <dc:date>2008-03-01T13:23:30Z</dc:date>
    <item>
      <title>sequential file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504036#M842777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hai&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how to see the sequential file in application server and how to create the sequential file in application server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;surender&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2008 08:36:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504036#M842777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-01T08:36:44Z</dc:date>
    </item>
    <item>
      <title>Re: sequential file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504037#M842778</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;GOTO  TCODE AL11 THEN YOU CAN SEE THE FILES IN APPLICATION SERVER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REGARDS,&lt;/P&gt;&lt;P&gt;VENKAT.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2008 08:38:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504037#M842778</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-01T08:38:50Z</dc:date>
    </item>
    <item>
      <title>Re: sequential file</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504038#M842779</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;U can view the files in the application server in transaction AL11.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u want to create the file in application server copy this to a sample program and execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS po_file(100) TYPE c DEFAULT '/usr/upi/out/test.dat'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;OPEN DATASET po_file FOR OUTPUT IN TEXT MODE.&lt;/P&gt;&lt;P&gt;IF sy-subrc is INITIAL.&lt;/P&gt;&lt;P&gt;  w_data = 'This is a test file generated for learning'.&lt;/P&gt;&lt;P&gt; TRANSFER w_data TO po_file.&lt;/P&gt;&lt;P&gt;CLOSE DATASET po_file..&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;  WRITE:/1 'Not able to open file'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After executing this go to AL11 and search for file test.dat. Double click on that file. U can see the text &lt;STRONG&gt;This is a test file generated for learning&lt;/STRONG&gt; in ur file.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If u r not able to open the file then check and give some valid directory name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vinod.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 01 Mar 2008 13:23:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/sequential-file/m-p/3504038#M842779</guid>
      <dc:creator>vinod_vemuru2</dc:creator>
      <dc:date>2008-03-01T13:23:30Z</dc:date>
    </item>
  </channel>
</rss>

