SAP Reports / Programs

RSMODPRF SAP ABAP Report - Field Exits for Data Elements







RSMODPRF is a standard Executable ABAP Report available within your SAP system (depending on your version and release level). It is used for As part of the extension concept, SAP allows you to install a field exit for each screen field...see full standard documentation available for this report. Also check out the submitted Comments related to this SAP report and the details below to see which OBJECTS it interacts with such as TABLES, FUNCTION MODULES, INCLUDES ETC.

If you would like to execute this report or see the full code listing simply enter RSMODPRF into the relevant SAP transactions such as SE38 or SE80


ABAP code to call this SAP report using the submit statement

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.






SUBMIT RSMODPRF. "Basic submit
SUBMIT RSMODPRF AND RETURN. "Return to original report after report execution complete
SUBMIT RSMODPRF VIA SELECTION-SCREEN. "Display selection screen of submitted report to user
    See more syntax options for the ABAP SUBMIT statement


Text pool values


Selection Text: EXITNR = Number of field exit
Selection Text: DE = Data element
Title: Field Exits for Data Elements
Text Symbol: 020 = Delete field exit?
Text Symbol: 019 = >>> Data element does not exist <<<
Text Symbol: 018 = Field exit for
Text Symbol: 017 = Short text for data element
Text Symbol: 016 = is inactive
Text Symbol: 022 = Assignment field exit to prog.
Text Symbol: 021 = Save assignment?
Text Symbol: 015 = Activation
Text Symbol: 005 = Screen
Text Symbol: 004 = Program
Text Symbol: 003 = Number of field exit
Text Symbol: 002 = Status
Text Symbol: 001 = Data element
Text Symbol: 014 = Activate function module ?
Text Symbol: 013 = ACTIVE
Text Symbol: 012 = GLOBAL
Text Symbol: 011 = INACTIVE
Text Symbol: 010 = No field exits have yet been created


INCLUDES used within this REPORT RSMODPRF

No INCLUDES are used within this REPORT code!


TABLES used within REPORT and the associated SELECT statement:





No SAP DATABASE tables are accessed within this REPORT code!


Function Modules used within report and the associated call statement:

RS_FUNCTION_CHANGE CALL FUNCTION 'RS_FUNCTION_CHANGE' EXPORTING FUNCNAME = FUNCTION.

RS_NAVIGATION_MONITOR CALL FUNCTION 'RS_NAVIGATION_MONITOR'.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'Y' TEXTLINE1 = 'Zuordnung sichern ?'(021) TEXTLINE2 = ' ' TITEL = 'Zuordnung Feldexit-Programm'(022) IMPORTING ANSWER = ANSWER.

RS_FUNCTION_ACTIVE_CHECK CALL FUNCTION 'RS_FUNCTION_ACTIVE_CHECK' EXPORTING FUNCNAME = FUNCTION IMPORTING ACTIVE = FLAG.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'Y' TEXTLINE1 = MESSTEXT TEXTLINE2 = 'FB aktivieren ?'(014) TITEL = 'Aktivierung'(015) IMPORTING ANSWER = ANSWER.

RS_FUNCTION_ACTIVATE CALL FUNCTION 'RS_FUNCTION_ACTIVATE' EXPORTING FUNCNAME = FB ACTION = 'X' CORR_INSERT = 'X'.

RS_FUNCTION_ACTIVE_CHECK CALL FUNCTION 'RS_FUNCTION_ACTIVE_CHECK' EXPORTING FUNCNAME = FTAB-FUNCNAME IMPORTING ACTIVE = FLAG.

TR_OBJECT_CHECK CALL FUNCTION 'TR_OBJECT_CHECK' EXPORTING WI_KO200 = LS_KO200 IMPORTING WE_ORDER = LV_ORDER TABLES WT_E071K = LT_E071K "leer EXCEPTIONS OTHERS = 1.

TR_OBJECT_INSERT CALL FUNCTION 'TR_OBJECT_INSERT' EXPORTING WI_ORDER = LV_ORDER WI_KO200 = LS_KO200 TABLES WT_E071K = LT_E071K EXCEPTIONS OTHERS = 1.

POPUP_TO_GET_VALUE CALL FUNCTION 'POPUP_TO_GET_VALUE' EXPORTING FIELDNAME = 'DE' TABNAME = 'TDDIR' TITEL = 'Feldexit zu '(018) VALUEIN = DTEL IMPORTING ANSWER = ANSWER VALUEOUT = DTEL EXCEPTIONS FIELDNAME_NOT_FOUND = 01.

RS_FUNCTION_CHANGE CALL FUNCTION 'RS_FUNCTION_CHANGE' EXPORTING FUNCNAME = FUNCTION.

RS_NAVIGATION_MONITOR CALL FUNCTION 'RS_NAVIGATION_MONITOR'.

RS_FUNCTION_SHOW CALL FUNCTION 'RS_FUNCTION_SHOW' EXPORTING FUNCNAME = FUNCTION.

RS_NAVIGATION_MONITOR CALL FUNCTION 'RS_NAVIGATION_MONITOR'.

RS_FUNCTION_ACTIVATE CALL FUNCTION 'RS_FUNCTION_ACTIVATE' EXPORTING FUNCNAME = FUNCTION ACTION = 'X' CORR_INSERT = 'X'.

RS_FUNCTION_DELETE CALL FUNCTION 'RS_FUNCTION_DELETE' EXPORTING FUNCNAME = FUNCTION.

POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING DEFAULTOPTION = 'Y' TEXTLINE1 = 'Feldexit wirklich löschen ?'(020) TEXTLINE2 = ' ' TITEL = TDDIR-DE IMPORTING ANSWER = ANSWER.

RS_FUNCTION_DELETE CALL FUNCTION 'RS_FUNCTION_DELETE' EXPORTING FUNCNAME = FUNCTION.



Contribute (Add Comments)

Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.







The contribute/comments section below therefore offer's an opportunity for anyone to add additional information. This can be anything from useful hints, tips and screen shots to relevant SAP notes or anything else you feel is relevant to this report.

This will then be available for everyone to easily find by simply searching on the report name RSMODPRF or its description.