RESET_OUTPUT_E is a standard SAP function module available within R/3 SAP systems depending on your version and release level. Below is the pattern details for this FM showing its interface including any import and export parameters, exceptions etc as well as any documentation contributions (Comments) specific to the object.
See here to view full function module documentation and code listing, simply by entering the name RESET_OUTPUT_E into the relevant SAP transaction such as SE37 or SE80.
Associated Function Group:
LOCAL_EDT1
Released Date:
Not Released
Processing type: Normal fucntion module
CALL FUNCTION 'RESET_OUTPUT_E' "
* EXPORTING
* callback_program = " trdir-name
* callback_usercom = " rstxp-tdobject Name of a module integrated into navigation
* callback_set_pfkey = " rstxp-tdobject Name of a module integrated into navigation
* callback_check = " rstxp-tdobject Name of a module integrated into navigation
* callback_save = " rstxp-tdobject Name of a module integrated into navigation
* callback_before_function = " rstxp-tdobject Name of a module integrated into navigation
* callback_after_function = " rstxp-tdobject Name of a module integrated into navigation
* line_name = 'RSTXP-TDLINE' "
* first_name = 'RSTXP-TDFIRST' "
* last_name = 'RSTXP-TDLAST' "
* total_name = 'RSTXP-TDTOTAL' "
* commline_name = 'RSTXP-TDCOMMLINE' "
* linecom_name = 'RSTXP-TDLINECOM' "
* mark_name = 'RSTXP-TDMARK' "
* mark1_name = 'RSTXP-TDMARK1' "
* headline_name = 'RSTXP-TDHEADLINE' "
* split_call = SPACE "
* c_handle = " cl_wb_editor
TABLES
content = " rswsourcet ABAP Source Line
content_c = " rswsourcet ABAP Source Line
page = " rswsourcet ABAP Source Line
lineindex = " edlineindx
linenum = " edlinenum
step = " edstep
tk = " sedi_tk Extended String Description of Token in ABAP Source Analysis
stm = " sstmnt
message_tab_i = " abapsource ABAP Source Line
smodilog_abap = " smodilog
mod_tab = " smodi_mod_tab
CHANGING
edit = " s38e
dynpro_lines = " sy-index
scanned = "
new_source = "
overflow_area = "
msg = "
incl = "
row = "
col = "
wrd = "
undo_exported = "
linecom_was_executed = "
content_app_id = " s38e-app_id
tdparam2 = " rstxp-tdparam EDIC: Function parameters
output_bottom = "
fcode_i = " tse02-progfun
fcode_save = "
auto_correct = "
lines_appended = " sy-index
tdheadline = " rstxp-tdheadline EDIC: Header
no_input_flag = "
extend_mod = "
control_content = " cxtab_control
* editor_mode = " editormode
cursor_i = "
name_wout_namespace = "
* icon_dynp_akt_gen = " smp_dyntxt
enter_w = " tse04-linecomtxt
komprmode = "
case_mode = "
s_modified = "
last_content_display = " sy-index
content_display = " sy-index
content_fill = " sy-index
exclude_filled = "
suppress_dialog_flag = "
edit_control = "
dynnr_changed = "
editor_content_modified = "
old_fcode = " tse02-progfun
pcmode = "
lineal_mode = "
mark_flag = "
status_flag = "
* c_editor = " object
* transport_key = " trkey
. " RESET_OUTPUT_E
The ABAP code below is a full code listing to execute function module RESET_OUTPUT_E including all data declarations. The code uses the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the original method of declaring data variables up front. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8).
| it_content | TYPE STANDARD TABLE OF RSWSOURCET,"TABLES PARAM |
| wa_content | LIKE LINE OF it_content , |
| it_content_c | TYPE STANDARD TABLE OF RSWSOURCET,"TABLES PARAM |
| wa_content_c | LIKE LINE OF it_content_c , |
| it_page | TYPE STANDARD TABLE OF RSWSOURCET,"TABLES PARAM |
| wa_page | LIKE LINE OF it_page , |
| it_lineindex | TYPE STANDARD TABLE OF EDLINEINDX,"TABLES PARAM |
| wa_lineindex | LIKE LINE OF it_lineindex , |
| it_linenum | TYPE STANDARD TABLE OF EDLINENUM,"TABLES PARAM |
| wa_linenum | LIKE LINE OF it_linenum , |
| it_step | TYPE STANDARD TABLE OF EDSTEP,"TABLES PARAM |
| wa_step | LIKE LINE OF it_step , |
| it_tk | TYPE STANDARD TABLE OF SEDI_TK,"TABLES PARAM |
| wa_tk | LIKE LINE OF it_tk , |
| it_stm | TYPE STANDARD TABLE OF SSTMNT,"TABLES PARAM |
| wa_stm | LIKE LINE OF it_stm , |
| it_message_tab_i | TYPE STANDARD TABLE OF ABAPSOURCE,"TABLES PARAM |
| wa_message_tab_i | LIKE LINE OF it_message_tab_i , |
| it_smodilog_abap | TYPE STANDARD TABLE OF SMODILOG,"TABLES PARAM |
| wa_smodilog_abap | LIKE LINE OF it_smodilog_abap , |
| it_mod_tab | TYPE STANDARD TABLE OF SMODI_MOD_TAB,"TABLES PARAM |
| wa_mod_tab | LIKE LINE OF it_mod_tab . |
The below ABAP code uses the older none in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. It may also be useful if you are using an older version of SAP as some of the newer syntax above, such as the @DATA is not available until 4.70 EHP 8.
DATA:
| ld_edit | TYPE S38E , |
| it_content | TYPE STANDARD TABLE OF RSWSOURCET , |
| wa_content | LIKE LINE OF it_content, |
| ld_callback_program | TYPE TRDIR-NAME , |
| ld_dynpro_lines | TYPE SY-INDEX , |
| it_content_c | TYPE STANDARD TABLE OF RSWSOURCET , |
| wa_content_c | LIKE LINE OF it_content_c, |
| ld_callback_usercom | TYPE RSTXP-TDOBJECT , |
| ld_scanned | TYPE STRING , |
| it_page | TYPE STANDARD TABLE OF RSWSOURCET , |
| wa_page | LIKE LINE OF it_page, |
| ld_callback_set_pfkey | TYPE RSTXP-TDOBJECT , |
| ld_new_source | TYPE STRING , |
| it_lineindex | TYPE STANDARD TABLE OF EDLINEINDX , |
| wa_lineindex | LIKE LINE OF it_lineindex, |
| ld_callback_check | TYPE RSTXP-TDOBJECT , |
| ld_overflow_area | TYPE STRING , |
| it_linenum | TYPE STANDARD TABLE OF EDLINENUM , |
| wa_linenum | LIKE LINE OF it_linenum, |
| ld_callback_save | TYPE RSTXP-TDOBJECT , |
| it_step | TYPE STANDARD TABLE OF EDSTEP , |
| wa_step | LIKE LINE OF it_step, |
| ld_callback_before_function | TYPE RSTXP-TDOBJECT , |
| ld_msg | TYPE STRING , |
| ld_callback_after_function | TYPE RSTXP-TDOBJECT , |
| it_tk | TYPE STANDARD TABLE OF SEDI_TK , |
| wa_tk | LIKE LINE OF it_tk, |
| ld_incl | TYPE STRING , |
| ld_line_name | TYPE STRING , |
| ld_row | TYPE STRING , |
| it_stm | TYPE STANDARD TABLE OF SSTMNT , |
| wa_stm | LIKE LINE OF it_stm, |
| ld_first_name | TYPE STRING , |
| ld_col | TYPE STRING , |
| it_message_tab_i | TYPE STANDARD TABLE OF ABAPSOURCE , |
| wa_message_tab_i | LIKE LINE OF it_message_tab_i, |
| ld_last_name | TYPE STRING , |
| ld_wrd | TYPE STRING , |
| it_smodilog_abap | TYPE STANDARD TABLE OF SMODILOG , |
| wa_smodilog_abap | LIKE LINE OF it_smodilog_abap, |
| ld_total_name | TYPE STRING , |
| ld_undo_exported | TYPE STRING , |
| it_mod_tab | TYPE STANDARD TABLE OF SMODI_MOD_TAB , |
| wa_mod_tab | LIKE LINE OF it_mod_tab, |
| ld_commline_name | TYPE STRING , |
| ld_linecom_was_executed | TYPE STRING , |
| ld_linecom_name | TYPE STRING , |
| ld_content_app_id | TYPE S38E-APP_ID , |
| ld_mark_name | TYPE STRING , |
| ld_tdparam2 | TYPE RSTXP-TDPARAM , |
| ld_mark1_name | TYPE STRING , |
| ld_output_bottom | TYPE STRING , |
| ld_headline_name | TYPE STRING , |
| ld_fcode_i | TYPE TSE02-PROGFUN , |
| ld_split_call | TYPE STRING , |
| ld_fcode_save | TYPE STRING , |
| ld_c_handle | TYPE CL_WB_EDITOR , |
| ld_auto_correct | TYPE STRING , |
| ld_lines_appended | TYPE SY-INDEX , |
| ld_tdheadline | TYPE RSTXP-TDHEADLINE , |
| ld_no_input_flag | TYPE STRING , |
| ld_extend_mod | TYPE STRING , |
| ld_control_content | TYPE CXTAB_CONTROL , |
| ld_editor_mode | TYPE EDITORMODE , |
| ld_cursor_i | TYPE STRING , |
| ld_name_wout_namespace | TYPE STRING , |
| ld_icon_dynp_akt_gen | TYPE SMP_DYNTXT , |
| ld_enter_w | TYPE TSE04-LINECOMTXT , |
| ld_komprmode | TYPE STRING , |
| ld_case_mode | TYPE STRING , |
| ld_s_modified | TYPE STRING , |
| ld_last_content_display | TYPE SY-INDEX , |
| ld_content_display | TYPE SY-INDEX , |
| ld_content_fill | TYPE SY-INDEX , |
| ld_exclude_filled | TYPE STRING , |
| ld_suppress_dialog_flag | TYPE STRING , |
| ld_edit_control | TYPE STRING , |
| ld_dynnr_changed | TYPE STRING , |
| ld_editor_content_modified | TYPE STRING , |
| ld_old_fcode | TYPE TSE02-PROGFUN , |
| ld_pcmode | TYPE STRING , |
| ld_lineal_mode | TYPE STRING , |
| ld_mark_flag | TYPE STRING , |
| ld_status_flag | TYPE STRING , |
| ld_c_editor | TYPE OBJECT , |
| ld_transport_key | TYPE TRKEY . |
Please help keep this info upto date and use the comments section below to add useful hints, tips and information specific to this SAP function. This will then be available for you and other users to easily find by simply searching on the object name RESET_OUTPUT_E or its description.