MS33CF02 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 MS33CF02 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.
Title: Forms for Modules
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
DD_DOMVALUES_GET call function 'DD_DOMVALUES_GET' exporting DOMNAME = L_DOMNAME tables DD07V_TAB = DV_TAB exceptions others = 2.
DD_DOMVALUE_TEXT_GET call function 'DD_DOMVALUE_TEXT_GET' exporting DOMNAME = L_DOMNAME VALUE = DV_TAB-DOMVALUE_L importing DD07V_WA = DV_TAB exceptions others = 1.
F4IF_INT_TABLE_VALUE_REQUEST call function 'F4IF_INT_TABLE_VALUE_REQUEST' exporting RETFIELD = 'DOMVALUE_L' DYNPPROG = 'SAPMS33C' DYNPNR = '0200' DYNPROFIELD = L_DYNPFLD DISPLAY = L_X_DISPLAY tables VALUE_TAB = V_TAB FIELD_TAB = F_TAB RETURN_TAB = R_TAB exceptions others = 1.
DYNP_VALUES_UPDATE call function 'DYNP_VALUES_UPDATE' exporting DYNAME = 'SAPMS33C' DYNUMB = '200' tables DYNPFIELDS = DY_TAB.
RS_CORR_INSERT call function 'RS_CORR_INSERT' exporting OBJECT = F1-ID OBJECT_CLASS = 'CNTX' MODE = ACCESS_MODE GLOBAL_LOCK = 'X' MASTER_LANGUAGE = D200_TRDIR-RLOAD importing DEVCLASS = D200_DEVCLASS. "INSERT access mode
RS_CORR_INSERT call function 'RS_CORR_INSERT' exporting OBJECT = F1-ID OBJECT_CLASS = 'CNTX' MODE = ACCESS_MODE GLOBAL_LOCK = 'X' MASTER_LANGUAGE = D200_TRDIR-RLOAD KORRNUM = L_REQUEST DEVCLASS = D200_DEVCLASS.
RS_ACCESS_PERMISSION call function 'RS_ACCESS_PERMISSION' exporting GLOBAL_LOCK = 'X' MODE = P_ACCESS_MODE OBJECT = F1-ID OBJECT_CLASS = 'CNTX' SUPPRESS_LANGUAGE_CHECK = ' ' importing NEW_MASTER_LANGUAGE = D200_TRDIR-RLOAD "mode='INSERT' exceptions CANCELED_IN_CORR = 1 ENQUEUED_BY_USER = 2 ENQUEUE_SYSTEM_FAILURE = 3 ILLEGAL_PARAMETER_VALUES = 4 LOCKED_BY_AUTHOR = 5 NO_MODIFY_PERMISSION = 6 NO_SHOW_PERMISSION = 7 PERMISSION_FAILURE = 8 REQUEST_LANGUAGE_DENIED = 9 others = 10.
POPUP_TO_CONFIRM_STEP CALL FUNCTION 'POPUP_TO_CONFIRM_STEP' EXPORTING TITEL = 'Attributpflege verlassen'(050) TEXTLINE1 = 'Daten werden verloren gehen.'(053)
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.