PSM_MEASURE_REPL_IN SAP Method of class IF_EX_BADI_PSM_MEASURE_REPL
Below is documentation, parameters and attributes of ABAP Method PSM_MEASURE_REPL_IN within SAP class IF_EX_BADI_PSM_MEASURE_REPL. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_EX_BADI_PSM_MEASURE_REPL into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method PSM_MEASURE_REPL_IN can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method PSM_MEASURE_REPL_IN
.| Name | Type | Data Type | Description | Default Value |
| DO_COMMIT | Changing | TYPE XFLAG | New Input Values | |
| EXTENSION | Changing | TYPE BAPIPAREX_T | BAPI Extension | |
| FMMEASURE | Changing | TYPE PSM_MEASURE_REPL_TAB | ||
| FMMEASURET | Changing | TYPE PSM_MEASURET_REPL_TAB | ||
| GET_ALL_ERRORS | Changing | TYPE XFLAG | New Input Values | |
| RESET_ALL_TEXTS | Changing | TYPE XFLAG | New Input Values | |
| RETURN | Changing | TYPE BAPIRET2_T | Return parameter table | |
| STOP_PROCESSING | Changing | TYPE XFELD | Checkbox |
Exceptions of Method PSM_MEASURE_REPL_IN
This method does not have any exceptionsExample ABAP coding
This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.DATA: lo_class TYPE REF TO IF_EX_BADI_PSM_MEASURE_REPL.
DATA: lv_DO_COMMIT TYPE XFLAG,
lv_EXTENSION TYPE BAPIPAREX_T,
lv_FMMEASURE TYPE PSM_MEASURE_REPL_TAB,
lv_FMMEASURET TYPE PSM_MEASURET_REPL_TAB,
lv_GET_ALL_ERRORS TYPE XFLAG,
lv_RESET_ALL_TEXTS TYPE XFLAG,
lv_RETURN TYPE BAPIRET2_T,
lv_STOP_PROCESSING TYPE XFELD,
lv_other TYPE c.
CALL METHOD lo_class=>PSM_MEASURE_REPL_IN(
CHANGING
DO_COMMIT = lv_DO_COMMIT
EXTENSION = lv_EXTENSION
FMMEASURE = lv_FMMEASURE
FMMEASURET = lv_FMMEASURET
GET_ALL_ERRORS = lv_GET_ALL_ERRORS
RESET_ALL_TEXTS = lv_RESET_ALL_TEXTS
RETURN = lv_RETURN
STOP_PROCESSING = lv_STOP_PROCESSING ).
Links to Related Class(s)
IF_EX_BA...Full list of available SAP object classes
Search for further information about these or an SAP related objects