‎2007 Jul 28 5:19 AM
‎2007 Jul 28 5:20 AM
Hi,
Try this way,
CALL FUNCTION ´FM NAME ´.
Regards.
Marcelo Ramos
‎2007 Jul 28 5:20 AM
Hi,
Try this way,
CALL FUNCTION ´FM NAME ´.
Regards.
Marcelo Ramos
‎2007 Jul 28 5:22 AM
Easiest way is to use the pattern button, it generates all parameters and exceptions code.
‎2007 Jul 28 5:23 AM
HI,
With CALL FUNCTION statement ..
here is an example to illustrate ...
Check user did not cancel request
CHECK ld_result EQ '0'.
CALL FUNCTION 'GUI_DOWNLOAD'
EXPORTING
filename = ld_fullpath
filetype = 'ASC'
* APPEND = 'X'
write_field_separator = 'X'
* CONFIRM_OVERWRITE = 'X'
TABLES
data_tab = it_datatab[] "need to declare and populate
EXCEPTIONS
file_open_error = 1
file_write_error = 2
OTHERS = 3.