SAP /SCA/CL_TLB_PROFILE OO Class -
/SCA/CL_TLB_PROFILE 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 /SCA/CL_TLB_PROFILE 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 /SCA/CL_TLB_PROFILE 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 |
| CONSTRUCTOR | Public | |
| CALL METHOD /sca/cl_tlb_profile=>CONSTRUCTOR...more details | ||
| HEADER_GET | Public | |
| CALL METHOD /sca/cl_tlb_profile=>HEADER_GET...more details | ||
| REMAINING_CAPACITY_CALCULATE | Public | |
| CALL METHOD /sca/cl_tlb_profile=>REMAINING_CAPACITY_CALCULATE...more details | ||
| RULE_CHECK | Public | |
| CALL METHOD /sca/cl_tlb_profile=>RULE_CHECK...more details | ||
| RULE_CLEANUP | Public | |
| CALL METHOD /sca/cl_tlb_profile=>RULE_CLEANUP...more details | ||
| RULE_FILTER | Public | |
| CALL METHOD /sca/cl_tlb_profile=>RULE_FILTER...more details | ||
|
| ||
| RULE_LIST_GET | Public | |
| CALL METHOD /sca/cl_tlb_profile=>RULE_LIST_GET...more details | ||
| UTILIZATION_RATIO_CALCULATE | Public | |
| CALL METHOD /sca/cl_tlb_profile=>UTILIZATION_RATIO_CALCULATE...more details | ||
/SCA/CL_TLB_PROFILE 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 |
| O_TLB_PROFILE_EXTENSION | Instance Attribute | Business add-in interface ZIF_EX__VMI_TLB_PRF_EXT | LIKE /SCA/IF_EX_TLB_PRFL_EXT | Private | |
| S_TLB_PROFILE_HEADER | Instance Attribute | TLB Profile Header Structure | LIKE /SCA/TLB_HEADER_STR | Private | |
| T_TLB_PROFILE_RULE_LIST | Instance Attribute | TLB Profile Rules Structure | LIKE /SCA/TLB_RULE_TAB | Private | |
| V_TLB_PROFILE | Instance Attribute | Text string 22 characters | LIKE /SCMB/VTPRID | Public |
Links to Related Class(s)
/SCA/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects