Hi Naveen,
Thanks For Responce, i tried this code into my button code .
DATA : lr_file TYPE REF TO cl_thtmlb_fileupload,
lv_xstring type string,
lv_id type string.
CHECK htmlb_event_ex IS BOUND.
* lr_file ?= htmlb_event_ex.
** lv_xstring = lr_file->FILE_NAME.
* lv_filelength = lr_file->file_length.
lv_id = 'fileUpload'.
TRY.
lr_file ?= cl_htmlb_manager=>get_data(
request = runtime->server->request
name = 'thtmlb:fileUpload'
id = lv_id ).
CATCH cx_sy_ref_is_initial cx_sy_move_cast_error.
RETURN.
ENDTRY.
lv_xstring = lr_file->FILE_NAME.
Can you please Expalain how write the code for getting path.
