2007 Mar 21 1:14 PM
Hi!
I would like to use the method cl_gui_frontend_services=>directory_exist.
Something is not working with the returning parameter, but I don't know why?
DATA: lv_talalt TYPE c.
CLEAR lv_talalt.
CALL METHOD cl_gui_frontend_services=>directory_exist
EXPORTING
directory = lv_directory_string
RETURNING
RESULT = lv_talalt.
Thanx in adavance
Tamá
2007 Mar 21 1:19 PM
You can also right it like this in a Netweaver Release, then there would have been no confusion with the RETURN/RECIEVING
lv_talalt = cl_gui_frontend_services=>directory_exist( lv_directory_string ).Regards,
Rich Heilman
2007 Mar 21 1:19 PM
2007 Mar 21 1:21 PM
Thanx for the answers, found the solution.
CALL METHOD cl_gui_frontend_services=>directory_exist
EXPORTING
directory = lv_directory_string
RECEIVING "<<<---
result = lv_talalt.
2007 Mar 21 1:22 PM
2007 Mar 21 1:24 PM
| User | Count |
|---|---|
| 6 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |