MIOLXF50 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 MIOLXF50 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: PM Reporting - Routines for displaying attributes
No INCLUDES are used within this REPORT code!
No SAP DATABASE tables are accessed within this REPORT code!
CLAF_CLASSIFICATION_OF_OBJECTS CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS' EXPORTING class = g_class_sel-class classtext = ' ' classtype = g_class_sel-klart * CLINT = ' ' features = 'X' language = sy-langu object = h_object objecttable = h_table key_date = sy-datum initial_charact = ' ' * NO_VALUE_DESCRIPT = * CHANGE_SERVICE_CLF = 'X' inherited_char = 'X' TABLES t_class = h_class t_objectdata = h_clobjdat * I_SEL_CHARACTERISTIC = EXCEPTIONS no_classification = 1 no_classtypes = 2 invalid_class_type = 3 OTHERS = 4.
CLMA_CLASS_EXIST CALL FUNCTION 'CLMA_CLASS_EXIST' EXPORTING class = p_class_sel-class classtype = p_class_sel-klart IMPORTING ret_code = h_subrc EXCEPTIONS no_valid_sign = 1 OTHERS = 2.
CLCA_GET_CLASSTYPES_FROM_TABLE CALL FUNCTION 'CLCA_GET_CLASSTYPES_FROM_TABLE' EXPORTING spras = sy-langu table = h_table with_text = ' ' TABLES iklart = h_iklart EXCEPTIONS no_classtype_found = 1 OTHERS = 2.
CLAF_CLASSIFICATION_OF_OBJECTS CALL FUNCTION 'CLAF_CLASSIFICATION_OF_OBJECTS' EXPORTING * CLASS = ' ' classtext = 'X' classtype = h_iklart-klart * CLINT = ' ' features = ' ' * LANGUAGE = SY-LANGU object = h_object objecttable = h_table key_date = sy-datum initial_charact = 'X' no_value_descript = 'X' * CHANGE_SERVICE_CLF = 'X' * INHERITED_CHAR = ' ' TABLES t_class = h_class_tab t_objectdata = h_object_tab * I_SEL_CHARACTERISTIC = EXCEPTIONS no_classification = 1 no_classtypes = 2 invalid_class_type = 3 OTHERS = 4.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'SCLASS' lfieldname = 'CLASS' IMPORTING dfies_wa = h_field_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'SCLASS' lfieldname = 'KLART' IMPORTING dfies_wa = h_field_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
DDIF_FIELDINFO_GET CALL FUNCTION 'DDIF_FIELDINFO_GET' EXPORTING tabname = 'SCLASS' lfieldname = 'KLBEZ' IMPORTING dfies_wa = h_field_tab EXCEPTIONS not_found = 1 internal_error = 2 OTHERS = 3.
F4IF_INT_TABLE_VALUE_REQUEST CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST' EXPORTING * DDIC_STRUCTURE = ' ' retfield = 'CLASS' * PVALKEY = ' ' * DYNPPROG = ' ' * DYNPNR = ' ' * DYNPROFIELD = ' ' * STEPL = 0 window_title = text-c01 * VALUE = ' ' value_org = 'S' multiple_choice = 'X' * DISPLAY = ' ' callback_program = sy-cprog callback_form = 'CLASS_SEARCH_CALL_BACK_F50' * MARK_TAB = IMPORTING user_reset = l_user_reset TABLES value_tab = h_value_tab field_tab = h_field_tab return_tab = lt_return_tab * DYNPFLD_MAPPING = EXCEPTIONS parameter_error = 1 no_values_found = 2 OTHERS = 3.
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.