Hi Experts,
I am using fm GUI_FILE_SAVE_DIALOG,
CALL FUNCTION 'GUI_FILE_SAVE_DIALOG'
EXPORTING
WINDOW_TITLE = 'Select File'
FILE_FILTER = '(.xls)|.xls|'
IMPORTING
FULLPATH = SOURCEFILENAME
USER_ACTION = USER_ACTION.
IF USER_ACTION <> 0 AND USER_ACTION <> 1 AND USER_ACTION <> 2.
MESSAGE S000(ZZ) WITH TEXT-000.
EXIT.
ENDIF.
it is showing path select along with buttons Replace, Generate, and Extent. where i dnt need these.
i need bapi in bid like GUI_FILE_LOAD_DIALOG.
Thanks in Advance.