Ir al contenido principal

Entradas

Mostrando las entradas de octubre, 2022

F4 para seleccionar archivo ABAP (F4 for filename )

  Selección de archivo único. PARAMETERS: pa_file type LOCALFILE. Proceso: at selection-screen on value-request for pa_file. *---------------------------------------------------------------------- perform get_file_name using 'Filename to download to'(011) changing pa_file. Rutina: *---------------------------------------------------------------------- * Form get_file_name *---------------------------------------------------------------------- * F4 help for file name *---------------------------------------------------------------------- form get_file_name using lo_text changing lo_file. data: lt_files type standard table of sdokpath, lw_file type sdokpath. call function 'TMP_GUI_FILE_OPEN_DIALOG' EXPORTING window_title = lo_text TABLES file_table = lt_files EXCEPTIONS others = 4. if sy-subrc = 4. message 'GUI error: please contact the helpdesk' type