SAP CL_CACS_PACKAGE OO Class - ICM: Package in Commission Application
CL_CACS_PACKAGE 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 CL_CACS_PACKAGE 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 CL_CACS_PACKAGE 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 | CONSTRUCTOR | Protected |
| CALL METHOD cl_cacs_package=>CONSTRUCTOR...more details | ||
| CREATE | Creates an Instance | Public |
| CALL METHOD cl_cacs_package=>CREATE...more details | ||
| EXCLUDES | Gets Required Packages in Form of Dependency Tree | Public |
| CALL METHOD cl_cacs_package=>EXCLUDES...more details | ||
| GET_ALL_PACKAGES | Gets All Packages | Public |
| CALL METHOD cl_cacs_package=>GET_ALL_PACKAGES...more details | ||
| GET_GROUPID | Gets Next Free Group Number | Protected |
| CALL METHOD cl_cacs_package=>GET_GROUPID...more details | ||
| GET_INVERSE_TOPOLOGICAL_ORDER | Gets Topological Sequence of Packages | Public |
| CALL METHOD cl_cacs_package=>GET_INVERSE_TOPOLOGICAL_ORDER...more details | ||
|
| ||
| GET_KERNELPACKAGE | Gets ID of Core Package | Public |
| CALL METHOD cl_cacs_package=>GET_KERNELPACKAGE...more details | ||
| GET_PACKAGE_DESCR | Gets Internal Package Description | Protected |
| CALL METHOD cl_cacs_package=>GET_PACKAGE_DESCR...more details | ||
| GET_PACKAGE_ID | Gets Identification of Application | Public |
| CALL METHOD cl_cacs_package=>GET_PACKAGE_ID...more details | ||
| GET_TEXT | Gets Short Text of Package | Public |
| CALL METHOD cl_cacs_package=>GET_TEXT...more details | ||
| GET_TOPOLOGICAL_ORDER | Gets Topological Sequence of Packages | Public |
| CALL METHOD cl_cacs_package=>GET_TOPOLOGICAL_ORDER...more details | ||
| IS_KERNELPACKAGE | Gets ID of Core Package | Public |
| CALL METHOD cl_cacs_package=>IS_KERNELPACKAGE...more details | ||
| PACKAGE_REQUIRED_BY | Determines Which Packages This Package Requires | Protected |
| CALL METHOD cl_cacs_package=>PACKAGE_REQUIRED_BY...more details | ||
| READ_DEPENDENCY | Reads Dependencies | Protected |
| CALL METHOD cl_cacs_package=>READ_DEPENDENCY...more details | ||
| READ_PACKAGES | Reads Package Definition | Protected |
| CALL METHOD cl_cacs_package=>READ_PACKAGES...more details | ||
| REQUIRED_BY | Determines Which Packages This Package Requires | Public |
| CALL METHOD cl_cacs_package=>REQUIRED_BY...more details | ||
| REQUIRES | Gets Required Packages in Form of Dependency Tree | Public |
| CALL METHOD cl_cacs_package=>REQUIRES...more details | ||
| TOPOLOGICAL_SORT | Topological Sorting of Package List | Public |
| CALL METHOD cl_cacs_package=>TOPOLOGICAL_SORT...more details | ||
CL_CACS_PACKAGE 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 |
| MD_PACKAGE_ID | Instance Attribute | Package in Commissions | LIKE CACSPACKAGE | Public | |
| SD_GROUPID | Instance Attribute | LIKE | Private | ||
| ST_DEPENDENCY | Static Attribute | Dependencies of Packages | LIKE MTY_TT_DEPENDENCY | Protected | |
| ST_INSTANCE | Static Attribute | Instances of Package Objects | LIKE MTY_TT_PACKAGE | Protected | |
| ST_PACKAGE_DESCR | Static Attribute | Package Specifications | LIKE MTY_TT_PACKAGE_DESCR | Protected | |
| ST_TOPOLOGICAL_ORDER | Static Attribute | Topological Sequence of Packages | LIKE MTY_TT_PACKAGE_ID | Protected |
CL_CACS_PACKAGE types
MTY_GROUPID - Identification of GroupMTY_S_DEPENDENCY - Dependency of Package on Another
MTY_S_PACKAGE_DESCR - Package Description
MTY_TT_DEPENDENCY - Dependencies of Packages
MTY_TT_PACKAGE - Table Type for Class CL_CACS_PACKAGE
MTY_TT_PACKAGE_DESCR - Package Description (List)
MTY_TT_PACKAGE_ID - Identification of Packages (List)
Links to Related Class(s)
CL_CACS_...Full list of available SAP object classes
Search for further information about these or an SAP related objects