‎2008 Mar 01 8:36 AM
hai
how to see the sequential file in application server and how to create the sequential file in application server.
regards
surender
‎2008 Mar 01 8:38 AM
GOTO TCODE AL11 THEN YOU CAN SEE THE FILES IN APPLICATION SERVER.
REGARDS,
VENKAT.
‎2008 Mar 01 1:23 PM
Hi,
U can view the files in the application server in transaction AL11.
If u want to create the file in application server copy this to a sample program and execute.
PARAMETERS po_file(100) TYPE c DEFAULT '/usr/upi/out/test.dat'.
OPEN DATASET po_file FOR OUTPUT IN TEXT MODE.
IF sy-subrc is INITIAL.
w_data = 'This is a test file generated for learning'.
TRANSFER w_data TO po_file.
CLOSE DATASET po_file..
ELSE.
WRITE:/1 'Not able to open file'.
ENDIF.
After executing this go to AL11 and search for file test.dat. Double click on that file. U can see the text This is a test file generated for learning in ur file.
If u r not able to open the file then check and give some valid directory name.
Thanks,
Vinod.