SAP Classes

Share |

GET_KPI_IMPACT SAP Method - Return the impact of KPI - Negative/Positive


GET_KPI_IMPACT is a standard SAP ABAP method of class SCMTMS_CL_CRKPI_HELPER_CUST available within R/3 SAP systems depending on your version and release level. Below is the standard documentation available for it. You can view this information and more if you enter the class name SCMTMS_CL_CRKPI_HELPER_CUST into the relevant SAP transaction such as SE24 or SE80 and then select the method GET_KPI_IMPACT

Contribute(Add Comment)
See the comments section below for any useful hints, tips and information specific to this SAP Method. Also please feel free to add any further details you feel would be useful or ask any questions you may have. You can then easily find this info again simply by searching on the method name GET_KPI_IMPACT or its description.


Class Name: SCMTMS_CL_CRKPI_HELPER_CUST

Method Name: GET_KPI_IMPACT

Method Type: Static Method
This is a Static Method so you can call it directly

Importing Parameters:
   IV_KPI_ID " Key Performance Indicator TYPE SCMTMS_KPI_ID

Exporting Parameters:
   EV_KPI_IMPACT " Score Impact TYPE SCMTMS_KPI_TYPE

Exceptions:


Example ABAP coding

DATA:
   ld_IV_KPI_ID TYPE SCMTMS_KPI_ID ,
   ld_EV_KPI_IMPACT TYPE SCMTMS_KPI_TYPE.

" ld_IV_KPI_ID = "<Populate with value>

CALL METHOD SCMTMS_CL_CRKPI_HELPER_CUST=>GET_KPI_IMPACT(
EXPORTING
   IV_KPI_ID = ld_IV_KPI_ID
IMPORTING
   EV_KPI_IMPACT = ld_EV_KPI_IMPACT ).


comments powered by Disqus