MILL_SE_V45S_SIMULATE_NEW_ITEM 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 MILL_SE_V45S_SIMULATE_NEW_ITEM 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!
DYNP_GET_STEPL CALL FUNCTION 'DYNP_GET_STEPL' IMPORTING POVSTEPL = lf_stepl EXCEPTIONS STEPL_NOT_FOUND = 1 OTHERS = 2.
DYNP_VALUES_READ CALL FUNCTION 'DYNP_VALUES_READ' EXPORTING DYNAME = lf_repid DYNUMB = sy-dynnr * TRANSLATE_TO_UPPER = ' ' REQUEST = 'A' PERFORM_CONVERSION_EXITS = 'X' * PERFORM_INPUT_CONVERSION = ' ' * DETERMINE_LOOP_INDEX = ' ' TABLES DYNPFIELDS = lt_dynpfields EXCEPTIONS INVALID_ABAPWORKAREA = 1 INVALID_DYNPROFIELD = 2 INVALID_DYNPRONAME = 3 INVALID_DYNPRONUMMER = 4 INVALID_REQUEST = 5 NO_FIELDDESCRIPTION = 6 INVALID_PARAMETER = 7 UNDEFIND_ERROR = 8 DOUBLE_CONVERSION = 9 STEPL_NOT_FOUND = 10 OTHERS = 11 .
MILL_SE_GET_CHAR_AND_VALUE CALL FUNCTION 'MILL_SE_GET_CHAR_AND_VALUE' EXPORTING INSTANCE = vbap-cuobj IF_CREATION_MODE = 'X' * if_active_and_error = pf_active_and_error * if_RECALC_FATTR = 'X' importing new_instance = lf_new_cuobj * TABLES * et_value = lt_mvar CHANGING cf_anzeigen = pf_anzeigen Cx_FATTR = px_poss_char EXCEPTIONS MATERIAL_HAS_NO_PROFIL = 1 NO_CONFIGURATION_PARAMS = 2 OTHERS = 3.
RS_CONV_EX_2_IN CALL FUNCTION 'RS_CONV_EX_2_IN' EXPORTING INPUT_EXTERNAL = pt_dflds-fieldvalue TABLE_FIELD = table_field * CURRENCY = IMPORTING OUTPUT_INTERNAL =
EXCEPTIONS INPUT_NOT_NUMERICAL = 1 TOO_MANY_DECIMALS = 2 MORE_THAN_ONE_SIGN = 3 ILL_THOUSAND_SEPARATOR_DIST = 4 TOO_MANY_DIGITS = 5 SIGN_FOR_UNSIGNED = 6 TOO_LARGE = 7 TOO_SMALL = 8 INVALID_DATE_FORMAT = 9 INVALID_DATE = 10 INVALID_TIME_FORMAT = 11 INVALID_TIME = 12 INVALID_HEX_DIGIT = 13 UNEXPECTED_ERROR = 14 INVALID_FIELDNAME = 15 FIELD_AND_DESCR_INCOMPATIBLE = 16 INPUT_TOO_LONG = 17 NO_DECIMALS = 18 INVALID_FLOAT = 19 CONVERSION_EXIT_ERROR = 20 OTHERS = 21 .
Although this basic information may have limited use it does provide an easy to find location to store any knowledge about this program/report.