‎2006 Dec 03 8:09 PM
can u please tell me the function module to upload or download from a database server.
regards
‎2006 Dec 03 10:17 PM
‎2006 Dec 04 2:52 AM
‎2006 Dec 04 4:05 AM
Hi Kiran
I believe you want to upload a file from application server.if so check the following function modules :
AICF_DATASET_OPEN_FOR_INPUT
AICF_DATASET_OPEN_FOR_OUTPUT
AICF_SETTINGS_READ_FRM_DATASET
AICF_SETTINGS_WRITE_TO_DATASET
AICF_TABLE_READ_FROM_DATASET
AICF_TABLE_WRITE_TO_DATASET
if you want to fetch from the presentation server ,then you can opt for GUI_UPLOAD.Incase you want to presentation server download then go for GUI_DOWNLOAD.
Hope this helps
Regards
Mohamed Mansoor
‎2006 Dec 04 4:10 AM
Hello Mr. Kiran ..
I believe u want to read and write file from APPLICATION server and not DATABASE server. because Normally there is no access to database servers.
So I am telling u about reading and writing from App Server.
To open a file - OPEN Dataset <file_name>.
to read a file - read dataset <file_name> into <structure>.
to write into a file - transfer <structure> to <file_name>
to close a file after reading/writing - close dataset <file_name>.