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

.

NameTypeData TypeDescriptionDefault Value
IS_FLABERImportingTYPE
RM06CUMS_S
RM06CUMS Output structure
IS_PARAMSImportingTYPE
RM06CUMS_S_BADI
Reportparameters interfaced to the BADI for CQ reset calc.
CS_ABFTZChangingTYPE
RM06CUMS_S_BADI_RETURN
Returnparameters from the BADI for CQ reset calculation



Exceptions of Method DETERMINE_OFFSET

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!