DETERMINE_SUMMARIZEDVOLUMES SAP Method Determines the summarized volumes
Below is documentation, parameters and attributes of ABAP Method DETERMINE_SUMMARIZEDVOLUMES within SAP class IF_EX_BADI_EHPRC_PURE_SUB_DET. 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_EHPRC_PURE_SUB_DET 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_SUMMARIZEDVOLUMES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DETERMINE_SUMMARIZEDVOLUMES
.| Name | Type | Data Type | Description | Default Value |
| IO_BOV_SUB | Importing | TYPE REF TO CL_EHPRC_BOV_SUB | Back-End Access for SUB (General) | |
| IS_ROOT_KEY | Importing | TYPE EHCSMS_SPC_KEY | Specification key identifying specification related data | |
| IT_HEADER_KEY | Importing | TYPE EHCSMT_SPC_KEY | Table with substance related keys | |
| IV_SEL_LE | Importing | TYPE BUKRS | Company Code | |
| IV_UNIT_OF_MASSMEASURE | Importing | TYPE T006-MSEHI | Unit of Measurement | |
| CT_API_MSG | Changing | TYPE EHCSMT_SPC_MSG | Messages Table Type | |
| CT_VAI_BUFFER_TO_SUMMARIZE | Changing | TYPE EHPRCT_REG_LE_SVT_BUFFER | Registration volume tracking buffer table |
Exceptions of Method DETERMINE_SUMMARIZEDVOLUMES
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_EHPRC_PURE_SUB_DET.
DATA: lv_CT_API_MSG TYPE EHCSMT_SPC_MSG,
lv_CT_VAI_BUFFER_TO_SUMMARIZE TYPE EHPRCT_REG_LE_SVT_BUFFER,
lv_IO_BOV_SUB TYPE CL_EHPRC_BOV_SUB,
lv_IS_ROOT_KEY TYPE EHCSMS_SPC_KEY,
lv_IT_HEADER_KEY TYPE EHCSMT_SPC_KEY,
lv_IV_SEL_LE TYPE BUKRS,
lv_IV_UNIT_OF_MASSMEASURE TYPE T006-MSEHI,
lv_other TYPE c.
CALL METHOD lo_class=>DETERMINE_SUMMARIZEDVOLUMES(
EXPORTING
IO_BOV_SUB = lv_IO_BOV_SUB
IS_ROOT_KEY = lv_IS_ROOT_KEY
IT_HEADER_KEY = lv_IT_HEADER_KEY
IV_SEL_LE = lv_IV_SEL_LE
IV_UNIT_OF_MASSMEASURE = lv_IV_UNIT_OF_MASSMEASURE
CHANGING
CT_API_MSG = lv_CT_API_MSG
CT_VAI_BUFFER_TO_SUMMARIZE = lv_CT_VAI_BUFFER_TO_SUMMARIZE ).
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