SAP /BDL/CL_TASK_FACTORY OO Class - Factory for class objects (Singleton)
/BDL/CL_TASK_FACTORY 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 /BDL/CL_TASK_FACTORY 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 /BDL/CL_TASK_FACTORY 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_CREATOR | Return reference to a task creator object | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_CREATOR...more details | ||
| GET_REFERENCE | Return reference to singleton object | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_REFERENCE...more details | ||
| GET_TASK | Return reference to a task object | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_TASK...more details | ||
| GET_TASK_FM | Return name of FM that performs task action | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_TASK_FM...more details | ||
| GET_TASK_LIST | Return list of available tasks | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_TASK_LIST...more details | ||
| GET_TASK_TEXT | Return short text for task | Public |
| CALL METHOD /bdl/cl_task_factory=>GET_TASK_TEXT...more details | ||
|
| ||
| IS_TASK_ACTIVE | Is task handled by class? | Public |
| CALL METHOD /bdl/cl_task_factory=>IS_TASK_ACTIVE...more details | ||
/BDL/CL_TASK_FACTORY 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 |
| AR_REFERENCE | Static Attribute | Reference to singleton object | LIKE /BDL/CL_TASK_FACTORY | Private | |
| CF_ADDON_DOWNLOAD | Constant | Taskname | 'ADDON_DOWNLOAD' | LIKE CHAR40 | Public |
| CF_CATEGORY_ALL | Constant | Category: all | '*' | LIKE CHAR1 | Private |
| CF_CATEGORY_RTCCTOOL | Constant | Category: RTCCTOOL | 'RTCCTOOL' | LIKE CHAR12 | Private |
| CF_CATEGORY_SDCC | Constant | Category: SDCC | 'SDCC' | LIKE CHAR12 | Private |
| CF_CERTIFICATE_RENEWAL | Constant | Taskname | 'CERTIFICATE_RENEWAL' | LIKE CHAR40 | Public |
| CF_DELETE_OLD_SDCC_DATA | Constant | Taskname | 'DELETE_OLD_SDCC_DATA' | LIKE CHAR40 | Public |
| CF_EXPORT_DOWNLOAD | Constant | Taskname | 'EXPORT_DOWNLOAD' | LIKE CHAR40 | Public |
| CF_LICENSE_DATA | Constant | Taskname | 'LICENSE_DATA' | LIKE CHAR40 | Public |
| CF_MAINTAIN_SDCC | Constant | Taskname | 'MAINTAIN_SDCC' | LIKE CHAR40 | Public |
| CF_REQUEST_DATA | Constant | Taskname | 'REQUEST_DATA' | LIKE CHAR40 | Public |
| CF_RTCCTOOL | Constant | Taskname | 'RTCCTOOL' | LIKE CHAR40 | Public |
| CF_SEND_DATA | Constant | Taskname | 'SEND_DATA' | LIKE CHAR40 | Public |
| CF_SERVICE_DEFINITION_REFRESH | Constant | Taskname | 'SERVICE_DEFINITION_REFRESH' | LIKE CHAR40 | Public |
| CF_SESSION_REFRESH | Constant | Taskname | 'SESSION_REFRESH' | LIKE CHAR40 | Public |
| CF_STATUS_ACTIVE | Constant | Task status active | 'A' | LIKE CHAR1 | Private |
Links to Related Class(s)
/BDL/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects