SAP CL_CACS_TEXT OO Class - Short and Long Text of Object
CL_CACS_TEXT 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_TEXT 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_TEXT 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 | Public |
| CALL METHOD cl_cacs_text=>CONSTRUCTOR...more details | ||
| DISTRIBUTE_TEXTS | Distribute Text from Database to Attributes of Class | Protected |
| CALL METHOD cl_cacs_text=>DISTRIBUTE_TEXTS...more details | ||
| FILL_TEXTLINE | Write Short Texts to Database | Protected |
| CALL METHOD cl_cacs_text=>FILL_TEXTLINE...more details | ||
| GET_CHANGED | Get Method for CHANGED Parameter | Public |
| CALL METHOD cl_cacs_text=>GET_CHANGED...more details | ||
| GET_DESCRIPTION | Read Description | Public |
| CALL METHOD cl_cacs_text=>GET_DESCRIPTION...more details | ||
| GET_LANGUAGE | Return Current Language | Public |
| CALL METHOD cl_cacs_text=>GET_LANGUAGE...more details | ||
|
| ||
| GET_LONGTEXT_FOR_TRANSPORT | Determine Long Text for Transport | Public |
| CALL METHOD cl_cacs_text=>GET_LONGTEXT_FOR_TRANSPORT...more details | ||
| GET_TEXTS | Read All Texts of Object from Object | Public |
| CALL METHOD cl_cacs_text=>GET_TEXTS...more details | ||
| LOAD_SHORTTEXT | Load Texts from Text Table | Protected |
| CALL METHOD cl_cacs_text=>LOAD_SHORTTEXT...more details | ||
| LOAD_TEXTOBJECT | Load Long Text Object | Protected |
| CALL METHOD cl_cacs_text=>LOAD_TEXTOBJECT...more details | ||
| PUT_LANGUAGE | Insert Language in Text Line | Protected |
| CALL METHOD cl_cacs_text=>PUT_LANGUAGE...more details | ||
| READ_FROM_DB | Load Texts from Database | Public |
| CALL METHOD cl_cacs_text=>READ_FROM_DB...more details | ||
| RESOLVE_KEYDATA_TO_CLUSTERID | Determine Cluster ID from Key Data | Protected |
| CALL METHOD cl_cacs_text=>RESOLVE_KEYDATA_TO_CLUSTERID...more details | ||
| RESOLVE_KEYDATA_TO_WHERECOND | Convert Key Information to Selection Condition | Protected |
| CALL METHOD cl_cacs_text=>RESOLVE_KEYDATA_TO_WHERECOND...more details | ||
| SET_TEXTS | Changes Texts of Text Object | Public |
| CALL METHOD cl_cacs_text=>SET_TEXTS...more details | ||
| SPLIT_TEXTS | Transfer Texts to Database Structure | Protected |
| CALL METHOD cl_cacs_text=>SPLIT_TEXTS...more details | ||
| WRITE_TO_DB | Store Texts on Database | Public |
| CALL METHOD cl_cacs_text=>WRITE_TO_DB...more details | ||
CL_CACS_TEXT 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_CHANGED | Instance Attribute | Indicator: Object Was Changed | LIKE FLAG | Protected | |
| MD_CLUSTER_ID | Instance Attribute | Cluster ID of Description | LIKE CACS_CLUSTERID | Protected | |
| MD_DEFAULTTEXT | Instance Attribute | Short Text: Standard | LIKE STRING | Protected | |
| MD_DESCRIPTION | Instance Attribute | Description of Object as String | LIKE STRING | Protected | |
| MD_LANGUAGE | Instance Attribute | Language | LIKE SPRAS | Protected | |
| MD_LONGTEXT | Instance Attribute | Short Text: Long | LIKE STRING | Protected | |
| MD_MODE | Instance Attribute | Editing Mode | LIKE CACS_STDCTR_MODE | Private | |
| MD_SHORTTEXT | Instance Attribute | Short Text: Short | LIKE STRING | Protected | |
| MD_TEXTTAB | Instance Attribute | Table Name | LIKE TABNAME | Protected | |
| MR_KEYDATA | Instance Attribute | Key of the object | LIKE DATA | Protected | |
| MT_DD03L | Instance Attribute | Structure of Text Table | LIKE ENH_T_DD03L | Protected |
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