SAP /ASU/CL_CUSTOMIZING OO Class - Application Specific Upgrade: Customizing
/ASU/CL_CUSTOMIZING 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_CUSTOMIZING 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 /ASU/CL_CUSTOMIZING 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 |
| GET_ATTRIBUTES | Get attributes from customizing | Public |
| CALL METHOD /asu/cl_customizing=>GET_ATTRIBUTES...more details | ||
| GET_BDS_DOCUMENT_INFO | Get Classname/Classtype for BDS storage | Public |
| CALL METHOD /asu/cl_customizing=>GET_BDS_DOCUMENT_INFO...more details | ||
| GET_COMPONENTS_FROM_SYSTEM | Get Upgrade SWComponent from System Infos and/or customizing | Public |
| CALL METHOD /asu/cl_customizing=>GET_COMPONENTS_FROM_SYSTEM...more details | ||
| GET_FOLDER_CUSTOMIZING | /ASU/VC_SSMFOLDR | Public |
| CALL METHOD /asu/cl_customizing=>GET_FOLDER_CUSTOMIZING...more details | ||
| GET_SSM_EXECUTION_MANAGER | Get Execution Manager of Simple SchedMan | Public |
| CALL METHOD /asu/cl_customizing=>GET_SSM_EXECUTION_MANAGER...more details | ||
| GET_TASKLIST_MANAGER | Get Tastklist Manager used for ASU | Public |
| CALL METHOD /asu/cl_customizing=>GET_TASKLIST_MANAGER...more details | ||
|
| ||
| GET_TASKLIST_PREFIX | Get prefix for generating unique tasklist names | Public |
| CALL METHOD /asu/cl_customizing=>GET_TASKLIST_PREFIX...more details | ||
| GET_XML_TRANSFORMATION | Get XSLT transformation to convert ASU-specific XML->ABAP | Public |
| CALL METHOD /asu/cl_customizing=>GET_XML_TRANSFORMATION...more details | ||
| READ_SWITCH_FLAGS | Read /ASU/FLAGS general and global switch control flags | Public |
| CALL METHOD /asu/cl_customizing=>READ_SWITCH_FLAGS...more details | ||
| SAVE_SWITCH_FLAGS | Read /ASU/FLAGS general and global switch control flags | Public |
| CALL METHOD /asu/cl_customizing=>SAVE_SWITCH_FLAGS...more details | ||
/ASU/CL_CUSTOMIZING 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_ASU_LOGICAL_FILENAME | Static Attribute | Standard logical file name | 'ASU_TOOLBOX_UPGRADE_FILE' | LIKE FILEINTERN | Protected |
| GC_BANKALYZE_42_LOG_FILENAME | Static Attribute | Logical file name | 'ASU_TOOLBOX_BANKAL_42_UPGRADE_FILE' | LIKE FILEINTERN | Protected |
| GC_BANKALYZE_50_LOG_FILENAME | Static Attribute | Logical file name | 'ASU_TOOLBOX_BANKAL_50_UPGRADE_FILE' | LIKE FILEINTERN | Protected |
| GC_BASIS_COMPONENT | Static Attribute | Software component BI | 'SAP_BASIS' | LIKE CVERS-COMPONENT | Public |
| GC_BI_ASU_FILENAME | Static Attribute | Default BI/BW ASU Content File | 'ASU_SAP_BW.XML' | LIKE TRFILENAME | Protected |
| GC_BI_CHECK_FUNC | Static Attribute | Function Module: Check BI active | 'DELIVERY_CHCK_ACTIVE_COMPONENT' | LIKE TFDIR-FUNCNAME | Public |
| GC_BI_COMPONENT | Static Attribute | Software component BI | 'SAP_BW' | LIKE CVERS-COMPONENT | Public |
| GC_ERP_ASU_FILENAME | Static Attribute | Default ERP ASU Content File | 'ASU_SAP_APPL.XML' | LIKE TRFILENAME | Protected |
| GC_ERP_COMPONENT | Static Attribute | Software component ERP | 'SAP_APPL' | LIKE CVERS-COMPONENT | Public |
| GC_FSAPPL_300_100_LOG_FILENAME | Static Attribute | Logical file name | 'ASU_TOOLBOX_FSAPPL_100_UPGRADE_FILE' | LIKE FILEINTERN | Protected |
| GC_FSAPPL_300_200_LOG_FILENAME | Static Attribute | Logical file name | 'ASU_TOOLBOX_FSAPPL_200_UPGRADE_FILE' | LIKE FILEINTERN | Protected |
| GC_GENERAL_ASU_FILENAME | Static Attribute | Default generic ASU Content File | 'ASU.XML' | LIKE TRFILENAME | Protected |
| GC_SWITCH_ALV_FDESIGN | Static Attribute | Switch: Folder Design OLD/NEW | 'ALV FOLDER DESIGN' | LIKE /ASU/FLAGS-SWITCH | Public |
| GC_SWITCH_ALV_FDESIGN_OLD | Static Attribute | Switch: Folder Design OLD/NEW | 'OLD' | LIKE /ASU/FLAGS-VALUE | Public |
| GC_SWITCH_CLOUD4UPDATE | Static Attribute | Switch: CLoud Update active | 'CLOUD4UPDATE' | LIKE /ASU/FLAGS-SWITCH | Public |
| GC_SWITCH_FOLDER_CUSTOMIZING | Static Attribute | Folder Customizing created | 'FOLDER_CUSTOMIZING' | LIKE /ASU/FLAGS-SWITCH | Public |
| GC_TRUE | Static Attribute | True | 'X' | LIKE BOOLE_D | Protected |
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