SAP /ASU/CL_ASU_API OO Class - Application Specific Upgrade API
/ASU/CL_ASU_API 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 /ASU/CL_ASU_API including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class /ASU/IF_ASU_APIMethod list of /ASU/CL_ASU_API 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 |
| CREATE_PM_TCODE_OSSNOTE | Create Transaction Code | Protected |
| CALL METHOD /asu/cl_asu_api=>CREATE_PM_TCODE_OSSNOTE...more details | ||
| CREATE_REPORT_VARIANT_ASUBOX | Create Report Variant | Protected |
| CALL METHOD /asu/cl_asu_api=>CREATE_REPORT_VARIANT_ASUBOX...more details | ||
| GET_INSTANCE | Get Instance | Public |
| CALL METHOD /asu/cl_asu_api=>GET_INSTANCE...more details | ||
| GET_NUMBER | Get Number | Protected |
| CALL METHOD /asu/cl_asu_api=>GET_NUMBER...more details | ||
| LOAD_CONTENT | Load Content | Public |
| CALL METHOD /asu/cl_asu_api=>LOAD_CONTENT...more details | ||
| READ_ALL_VERSIONS | Read all ASU Content Versions stored on database | Public |
| CALL METHOD /asu/cl_asu_api=>READ_ALL_VERSIONS...more details | ||
|
| ||
| REFRESH_INSTANCE | Delete Instance | Public |
| CALL METHOD /asu/cl_asu_api=>REFRESH_INSTANCE...more details | ||
/ASU/CL_ASU_API 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 |
| GC_FILE_UPLOAD4CLOUD | Constant | Upload Files from Cloud Storage | 'C' | LIKE CHAR1 | Public |
| GC_FILE_UPLOAD4FRONTEND | Constant | Upload Files from Frontend | 'F' | LIKE CHAR1 | Public |
| GC_FILE_UPLOAD4SERVER | Constant | Upload Files from Application Server | 'S' | LIKE CHAR1 | Public |
| GC_TRUE | Constant | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | 'X' | LIKE BOOLE_D | Public |
| GT_API_INSTANCE | Static Attribute | LIKE TY_API_INSTANCE_TAB | Private |
/ASU/CL_ASU_API types
TY_API_INSTANCE -TY_API_INSTANCE_TAB -
Links to Related Class(s)
/ASU/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects