2007 Apr 23 7:33 AM
what is the function module name for file selector.
i used ws_filename_get. But it is not working showing the Exception Selection_Cancel.
what is the function module name for file selector.
i used ws_filename_get. But it is not working showing the Exception Selection_Cancel.
2007 Apr 23 7:38 AM
Hi Try these FM's
1) F4_filename
2) KD_GET_FILENAME_ON_F4
Reward if useful.
Thanks,
Senthil
2007 Apr 23 7:49 AM
2007 Apr 23 8:00 AM
PARAMETER: p_locat LIKE rlgrap-filename
DEFAULT '/interfaces/outbound/archive/RGIS/ff.txt'.
***************************************************************************
AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_locat.
PERFORM get_file USING p_locat.
***************************************************************************
form get_file using p_locat.
DATA: v_file LIKE ibipparms-path.
MOVE: p_locat TO v_file.
DATA: v_repid LIKE syst-repid,
v_dynnr LIKE syst-dynnr.
v_repid = syst-repid.
v_dynnr = syst-dynnr.
CALL FUNCTION 'F4_FILENAME'
EXPORTING
program_name = v_repid
dynpro_number = v_dynnr
field_name = field
IMPORTING
file_name = v_file.
MOVE: v_file TO p_locat.
Regds,
Senthil
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |