MAINTAIN_F_GEN is a standard ABAP INCLUDE available within your SAP system (depending on your version and release level). Below is the basic information available for this SAP report including which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC. Also check out the submitted Comments related to this SAP report or see any standard documentation available.
If you would like to execute this report or see the full code listing simply enter MAINTAIN_F_GEN into the relevant SAP transactions such as SE38 or SE80
This report can be called from another progam/report simply by using the ABAP SUBMIT statement, see below for example ABAP code snipts of how to do this.
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DDIF_DTEL_GET CALL FUNCTION 'DDIF_DTEL_GET' EXPORTING name = data_element * STATE = 'A' * LANGU = ' ' IMPORTING * GOTSTATE = dd04v_wa = wa_data_element * TPARA_WA = EXCEPTIONS illegal_input = 1 OTHERS = 2.
DD_DOMVALUE_TEXT_GET CALL FUNCTION 'DD_DOMVALUE_TEXT_GET' EXPORTING domname = wa_data_element-domname value = temp_value langu = sy-langu * BYPASS_BUFFER = ' ' IMPORTING dd07v_wa = wa_domain.
POPUP_TO_CONFIRM_WITH_MESSAGE CALL FUNCTION 'POPUP_TO_CONFIRM_WITH_MESSAGE' EXPORTING defaultoption = p_default diagnosetext1 = p_diagline1 diagnosetext2 = p_diagline2 diagnosetext3 = p_diagline3 textline1 = p_textline1 textline2 = p_textline2 titel = p_title start_column = 25 start_row = 6 IMPORTING answer = p_popup_answer.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.