SAP /SCMB/CL_PFM2_DATA OO Class - Access Class to PFM2 data
/SCMB/CL_PFM2_DATA is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class /SCMB/CL_PFM2_DATA including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of /SCMB/CL_PFM2_DATA SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| ADD_NEW_STEP | Add new step | Public |
| CALL METHOD /scmb/cl_pfm2_data=>ADD_NEW_STEP...more details | ||
| DELETE_DATA | Delete from Database | Public |
| CALL METHOD /scmb/cl_pfm2_data=>DELETE_DATA...more details | ||
| FETCH_FROM_DB | Fetch from database | Protected |
| CALL METHOD /scmb/cl_pfm2_data=>FETCH_FROM_DB...more details | ||
| FETCH_KYF_TEXT | Fetch key figure text | Protected |
| CALL METHOD /scmb/cl_pfm2_data=>FETCH_KYF_TEXT...more details | ||
| GET_KYF_TEXT | Get Keyfigure text | Public |
| CALL METHOD /scmb/cl_pfm2_data=>GET_KYF_TEXT...more details | ||
| GET_NEW_HEADER | Get new header | Public |
| CALL METHOD /scmb/cl_pfm2_data=>GET_NEW_HEADER...more details | ||
|
| ||
| INIT_HEADER | Initialize | Protected |
| CALL METHOD /scmb/cl_pfm2_data=>INIT_HEADER...more details | ||
| POST_PROCESS_FETCHED | Post-process fetched data | Protected |
| CALL METHOD /scmb/cl_pfm2_data=>POST_PROCESS_FETCHED...more details | ||
| READ_DATA | Read from database | Public |
| CALL METHOD /scmb/cl_pfm2_data=>READ_DATA...more details | ||
| SET_CHA_FOR_STEP | Set characteristic for step | Public |
| CALL METHOD /scmb/cl_pfm2_data=>SET_CHA_FOR_STEP...more details | ||
| SET_KYF_FOR_STEP | Set key figure for step | Public |
| CALL METHOD /scmb/cl_pfm2_data=>SET_KYF_FOR_STEP...more details | ||
| WRITE_DATA | Write to database | Public |
| CALL METHOD /scmb/cl_pfm2_data=>WRITE_DATA...more details | ||
/SCMB/CL_PFM2_DATA attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| MAX_KYF_IN_ROW | Constant | Max. no. of key figures in a row | 5 | LIKE I | Private |
| MS_DATA | Static Attribute | Application Performance Monitoring: Data | LIKE /SCMB/PFM2_S_DATA | Protected | |
| MT_KYF_TEXT | Static Attribute | LIKE LTY_T_KYF_TEXT | Protected | ||
| MV_KYF_TXT_FETCHED | Static Attribute | Key figure text fetched | LIKE ABAP_BOOL | Private | |
| MV_STEP_CURR | Static Attribute | Application Performance Monitoring: Step | LIKE /SCMB/PFM2_STEP | Protected |
/SCMB/CL_PFM2_DATA types
GTY_RANGES_TST - Ranges /scmb/pfm2_tstLTY_S_KYF_TEXT -
LTY_T_CHA -
LTY_T_HDR -
LTY_T_KYF -
LTY_T_KYF_TEXT -
Links to Related Class(s)
/SCMB/CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects