You are on page 1of 1

F4_CLOCK The user can select the desired time and the result is exported in one of the pa rameters.

Please find the code below. REPORT ZEX_TIME . Data: d_time like sy-uzeit. CALL FUNCTION 'F4_CLOCK' EXPORTING START_TIME = SY-UZEIT DISPLAY = ' ' IMPORTING SELECTED_TIME = d_time. Write:/ 'The selected time is ', d_time.

You might also like