SAP Classes

Share |

GET_KPI_PROFILES SAP Method - Return the list of KPI Profiles and Description


GET_KPI_PROFILES 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_PROFILES

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


Class Name: SCMTMS_CL_CRKPI_HELPER_CUST

Method Name: GET_KPI_PROFILES

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


Exporting Parameters:
   ET_KPI_PRF " Holds Profile ID and Description TYPE SCMTMS_TT_KPIPRF

Exceptions:


Example ABAP coding

DATA:
   ld_ET_KPI_PRF TYPE SCMTMS_TT_KPIPRF.


CALL METHOD SCMTMS_CL_CRKPI_HELPER_CUST=>GET_KPI_PROFILES(
IMPORTING
   ET_KPI_PRF = ld_ET_KPI_PRF ).


comments powered by Disqus