2007 Feb 05 9:24 AM
Experts,
I have put a document on application server using DATASET .
Now I want to open the same file from there only.
ho to do that.
Thnx in Advance
Chetan
Experts,
I have put a document on application server using DATASET .
Now I want to open the same file from there only.
ho to do that.
Thnx in Advance
Chetan
2007 Feb 05 9:28 AM
2007 Feb 05 9:34 AM
Hi Chetan ,
U can use following code to open the file u created in application server.
1.
data: <dataset_name>(25) value '.\tmp\file_sarang_01.txt'.
open dataset <dataset_name> for input in text mode encoding UTF-8
read dataset <dataset_name> into itab_wa.
Append itab_wa to itab.
close dataset <dataset_name>
loop at itab.
write: itab-field1 , itab-field2 .
endloop.
2. U can use transaction CG3Y , to save file from application server to presentation server directly.(A short cut for u)
I hope this solves ur problem
Reagrds.
Note: Reward if useful
2007 Feb 05 9:36 AM
2007 Feb 05 9:38 AM
Hi,
GO to AL11 transaction.Follow the path where you placed the documents just by double clicking.
2007 Feb 06 10:53 AM
Hi,
let me explain in detail,
I am putting one Word doc at application server using DATASET command throuhg one program. Now from the same program or another program I want to open that word document.
Now here, as per my understanding it put that word document content as a simple text but I want to open it in word.
| User | Count |
|---|---|
| 4 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |