SAPMF68O is a standard Executable ABAP Report 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 SAPMF68O into the relevant SAP transactions such as SE38 or SE80
Below is a list of transaction codes which are relevant to this SAP report
FNO3 - Display Object
FNO1 - Create Object
FNO2 - Change Object
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: Initial screen for master data objects (calls SAPMF670)
Text Symbol: 004 = Delete
Text Symbol: 003 = Display
Text Symbol: 002 = Change
Text Symbol: 001 = Create
INCLUDE MF68OF01.
No SAP DATABASE tables are accessed within this REPORT code!
FVVN_CHECK_MASTERNUMBER_ASSIGN CALL FUNCTION 'FVVN_CHECK_MASTERNUMBER_ASSIGN' IMPORTING e_assign = flg_stammnr e_numberrange = sav_numkr EXCEPTIONS non_unique = 1 OTHERS = 2.
NUMBER_GET_NEXT CALL FUNCTION 'NUMBER_GET_NEXT' EXPORTING nr_range_nr = sav_numkr object = 'FVVD_RANL' * QUANTITY = E03 * SUBOBJECT = E04 * TOYEAR = E05 IMPORTING number = vdhobj-rklammer * QUANTITY = I02 * returncode = ret_code EXCEPTIONS interval_not_found = 01 number_range_not_intern = 02 object_not_found = 03 quantity_is_0 = 04.
FVD_OBJECTS_DIALOG_MAIN CALL FUNCTION 'FVD_OBJECTS_DIALOG_MAIN' EXPORTING i_aktion = obj_aktion i_robjnr = vdhobj-robjnr i_rklammer = vdhobj-rklammer i_jhaupt = vdhobj-jhaupt i_numkr = sav_numkr i_switch_obj = herkunft_flag i_stammnr = flg_stammnr * I_GRUNDBUCH_SPERRE = ' ' IMPORTING e_robjnr = l_robjnr e_abort = g_abort EXCEPTIONS not_found = 1 locked = 2 canceled = 3 OTHERS = 4 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.