SAP CL_AXT_TABLES_MULTI OO Class - Instance maintenance for table extensions
CL_AXT_TABLES_MULTI 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_AXT_TABLES_MULTI 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_AXT_TABLES_MULTI 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 |
| BUFFER_SUBSCRIBE_FOR_REFRESH | Subscribes API for Refresh after BAPI_TRANSACTION_COMMIT | Public |
| CALL METHOD cl_axt_tables_multi=>BUFFER_SUBSCRIBE_FOR_REFRESH...more details | ||
| CHECK | Perform checks for validity, logical key, BAdI | Public |
| CALL METHOD cl_axt_tables_multi=>CHECK...more details | ||
| CREATE_MULTI_INSTANCE | Get Multi (Singleton) Instance for a table place | Public |
| CALL METHOD cl_axt_tables_multi=>CREATE_MULTI_INSTANCE...more details | ||
| DELETE | Delete records for parent keys | Public |
| CALL METHOD cl_axt_tables_multi=>DELETE...more details | ||
| FILL_MSG | Fill Message from buffered changes | Public |
| CALL METHOD cl_axt_tables_multi=>FILL_MSG...more details | ||
| GET_API_INSTANCE | Get single Table API instance | Public |
| CALL METHOD cl_axt_tables_multi=>GET_API_INSTANCE...more details | ||
|
| ||
| GET_CHANGED_LINES | Get parent lines with record changes | Public |
| CALL METHOD cl_axt_tables_multi=>GET_CHANGED_LINES...more details | ||
| GET_HISTORY | Get History from CHDOC | Public |
| CALL METHOD cl_axt_tables_multi=>GET_HISTORY...more details | ||
| GET_SEARCHABLE_FIELDS | Get search enabled fields | Public |
| CALL METHOD cl_axt_tables_multi=>GET_SEARCHABLE_FIELDS...more details | ||
| INITIALIZE | Initialize all single Table APIs | Public |
| CALL METHOD cl_axt_tables_multi=>INITIALIZE...more details | ||
| IS_CHANGED | Check whether a change has occured | Public |
| CALL METHOD cl_axt_tables_multi=>IS_CHANGED...more details | ||
| MODIFY_FROM_MSG | Apply changes of a message | Public |
| CALL METHOD cl_axt_tables_multi=>MODIFY_FROM_MSG...more details | ||
| QUERY | Process a Query | Public |
| CALL METHOD cl_axt_tables_multi=>QUERY...more details | ||
| SAVE | Save changes | Public |
| CALL METHOD cl_axt_tables_multi=>SAVE...more details | ||
CL_AXT_TABLES_MULTI 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 |
| MT_API | Instance Attribute | Tables API | LIKE TY_T_AXT_API | Private | |
| MT_BOL | Instance Attribute | LIKE TY_T_AXT_BOL | Private | ||
| MT_MULTI_SINGLETONS | Static Attribute | Tables API | LIKE TY_T_AXT_MULTI | Private | |
| MT_TAB_FIELDS | Instance Attribute | LIKE TY_T_AXT_TAB_FIELDS | Private | ||
| MV_TPLACE | Instance Attribute | LIKE AXT_PLACE | Private |
CL_AXT_TABLES_MULTI types
TY_AXT_API -TY_AXT_BOL -
TY_AXT_MULTI -
TY_AXT_QUERY -
TY_AXT_TAB_FIELDS -
TY_T_AXT_API -
TY_T_AXT_BOL -
TY_T_AXT_MULTI -
TY_T_AXT_TAB_FIELDS -
Links to Related Class(s)
CL_AXT_T...Full list of available SAP object classes
Search for further information about these or an SAP related objects