‎2007 Sep 03 7:14 AM
Hi,
What is the function module to fetch files from system throught PARAMETERS, except 'UPLOAD' function moudle.
‎2007 Sep 03 7:20 AM
report ztest.
PARAMETERS: p_file1 LIKE rlgrap-filename.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
PERFORM get_file1.
start-of-selection.
*
FORM get_file1.
CLEAR p_file1.
CALL FUNCTION 'F4_FILENAME'
IMPORTING
file_name = p_file1.
ENDFORM. " get_file1Hope this helps.
Best Regards, Murugesh AS
‎2007 Sep 03 7:17 AM
Hi,
GUI_UPLOAD is a function module.. in new systems we have methods..
which version of SAP r u working on?
Thanks and Best Regards,
Vikas Bittera.
‎2007 Sep 03 7:20 AM
report ztest.
PARAMETERS: p_file1 LIKE rlgrap-filename.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_file1.
PERFORM get_file1.
start-of-selection.
*
FORM get_file1.
CLEAR p_file1.
CALL FUNCTION 'F4_FILENAME'
IMPORTING
file_name = p_file1.
ENDFORM. " get_file1Hope this helps.
Best Regards, Murugesh AS
‎2007 Sep 03 7:23 AM
For presentation server you could
GUI_UPLOAD
For application server
you will have ti use
OPEN DATA SET ....INPUT method... check SAP help
Regards,
Amit Raut