DETERMINE_OFFSET SAP Method Determine offset for new cumulative quantity
Below is documentation, parameters and attributes of ABAP Method DETERMINE_OFFSET within SAP class ME_INTF_ME88_CQ_RESET. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name ME_INTF_ME88_CQ_RESET 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 DETERMINE_OFFSET can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DETERMINE_OFFSET
.| Name | Type | Data Type | Description | Default Value |
| IS_FLABER | Importing | TYPE RM06CUMS_S | RM06CUMS Output structure | |
| IS_PARAMS | Importing | TYPE RM06CUMS_S_BADI | Reportparameters interfaced to the BADI for CQ reset calc. | |
| CS_ABFTZ | Changing | TYPE RM06CUMS_S_BADI_RETURN | Returnparameters from the BADI for CQ reset calculation |
Exceptions of Method DETERMINE_OFFSET
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO ME_INTF_ME88_CQ_RESET.
DATA: lv_CS_ABFTZ TYPE RM06CUMS_S_BADI_RETURN,
lv_IS_FLABER TYPE RM06CUMS_S,
lv_IS_PARAMS TYPE RM06CUMS_S_BADI,
lv_other TYPE c.
CALL METHOD lo_class=>DETERMINE_OFFSET(
EXPORTING
IS_FLABER = lv_IS_FLABER
IS_PARAMS = lv_IS_PARAMS
CHANGING
CS_ABFTZ = lv_CS_ABFTZ ).
Links to Related Class(s)
ME_INTF_...Full list of available SAP object classes
Search for further information about these or an SAP related objects