COMPUTE_SUMS SAP Method Determines Totals for each Payt Currency and Paying Co. Code
Below is documentation, parameters and attributes of ABAP Method COMPUTE_SUMS within SAP class CL_BSP_BROK_PM_MERCH_CCAUTH_M. 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 CL_BSP_BROK_PM_MERCH_CCAUTH_M into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method COMPUTE_SUMS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method COMPUTE_SUMS
.| Name | Type | Data Type | Description | Default Value |
| IT_FKKCL | Importing | TYPE FKKCL_T | Table of Clearing Information | |
| I_GPART | Importing | TYPE GPART_KK | Business Partner Number | |
| I_VKONT | Importing | TYPE VKONT_KK | Contract Account Number | |
| ET_SUM | Returning | TYPE TITAGCYCCAUTHAMOUNT | Credit Card Payment: Table Category with Amounts and Curr. |
Exceptions of Method COMPUTE_SUMS
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_SUM TYPE TITAGCYCCAUTHAMOUNT,
lv_IT_FKKCL TYPE FKKCL_T,
lv_I_GPART TYPE GPART_KK,
lv_I_VKONT TYPE VKONT_KK,
lv_other TYPE c.
CALL METHOD CL_BSP_BROK_PM_MERCH_CCAUTH_M=>COMPUTE_SUMS(
EXPORTING
IT_FKKCL = lv_IT_FKKCL
I_GPART = lv_I_GPART
I_VKONT = lv_I_VKONT
RECEIVING
ET_SUM = lv_ET_SUM )
"Alternate coding for Method Call with returning parameter
lv_ET_SUM = CL_BSP_BROK_PM_MERCH_CCAUTH_M=>COMPUTE_SUMS(
EXPORTING
IT_FKKCL = lv_IT_FKKCL
I_GPART = lv_I_GPART
I_VKONT = lv_I_VKONT ).
Links to Related Class(s)
CL_BSP_B...Full list of available SAP object classes
Search for further information about these or an SAP related objects