SAP Classes

Share |

GET_KPI_WEIGHT SAP Method - Returns KPI weight of a KPI under a profile


GET_KPI_WEIGHT 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_WEIGHT

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_WEIGHT or its description.


Class Name: SCMTMS_CL_CRKPI_HELPER_CUST

Method Name: GET_KPI_WEIGHT

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
   IV_PROFILE_ID " Key Performance Indicator Profile TYPE SCMTMS_PROFILE_ID

Exporting Parameters:
   EV_KPI_WEIGHT " Key Performance Indicator Value TYPE SCMTMS_WEIGHTAGE

Exceptions:


Example ABAP coding

DATA:
   ld_IV_KPI_ID TYPE SCMTMS_KPI_ID ,
   ld_IV_PROFILE_ID TYPE SCMTMS_PROFILE_ID ,
   ld_EV_KPI_WEIGHT TYPE SCMTMS_WEIGHTAGE.

" ld_IV_KPI_ID = "<Populate with value>
" ld_IV_PROFILE_ID = "<Populate with value>

CALL METHOD SCMTMS_CL_CRKPI_HELPER_CUST=>GET_KPI_WEIGHT(
EXPORTING
   IV_KPI_ID = ld_IV_KPI_ID
   IV_PROFILE_ID = ld_IV_PROFILE_ID
IMPORTING
   EV_KPI_WEIGHT = ld_EV_KPI_WEIGHT ).


comments powered by Disqus