SAP /DSD/SL_CL_TA_SELECT OO Class - 'Transaction' Selection
/DSD/SL_CL_TA_SELECT 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 /DSD/SL_CL_TA_SELECT 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 /DSD/SL_CL_TA_SELECT 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 |
| ADD_AND_FOCUS | Adding and Focusing a New Entry | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>ADD_AND_FOCUS...more details | ||
| CONSTRUCTOR | CONSTRUCTOR | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>CONSTRUCTOR...more details | ||
| FREE | Destructor | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>FREE...more details | ||
| GET_DEFAULT_LAYOUT | Determine Default Layout | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>GET_DEFAULT_LAYOUT...more details | ||
| GET_LAYOUT | Determine Layout | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>GET_LAYOUT...more details | ||
| GET_SELECTED_NODES | Get Selected Nodes | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>GET_SELECTED_NODES...more details | ||
|
| ||
| ON_REFRESH_FINISHED | Event Handler 'REFRESH_FINISHED' | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>ON_REFRESH_FINISHED...more details | ||
| ON_REFRESH_PREPARE | Event Handler 'REFRESH_PREPARE' | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>ON_REFRESH_PREPARE...more details | ||
| ON_SELECTION_EXECUTED | Event Handler 'SELECTION_EXECUTED' | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>ON_SELECTION_EXECUTED...more details | ||
| ON_START_WORK | Event Handler 'Start Work' | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>ON_START_WORK...more details | ||
| ON_TOGGLE_VISIBILITY_SEARCH | Event Handler 'Toggle Visibility Search Area' | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>ON_TOGGLE_VISIBILITY_SEARCH...more details | ||
| REFRESH | Update Display (List and View) | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>REFRESH...more details | ||
| SET_EVENT_HANDLER | Set Event Handler | Private |
| CALL METHOD /dsd/sl_cl_ta_select=>SET_EVENT_HANDLER...more details | ||
| SET_INACTIVE_FCODES | Set Inactive Fcodes | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>SET_INACTIVE_FCODES...more details | ||
| SET_LAYOUT | Set Layout | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>SET_LAYOUT...more details | ||
| USE_ALL_TOURS | Which Data Will Be Used to Continue Processing? | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>USE_ALL_TOURS...more details | ||
| USE_CURRENT | Which Data Will Be Used to Continue Processing? | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>USE_CURRENT...more details | ||
| USE_NEXT | Which Data Will Be Used to Continue Processing? | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>USE_NEXT...more details | ||
| USE_PREVIOUS | Which Data Will Be Used to Continue Processing? | Public |
| CALL METHOD /dsd/sl_cl_ta_select=>USE_PREVIOUS...more details | ||
/DSD/SL_CL_TA_SELECT 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 |
| MC_FC_REFRESH | Constant | Function Code 'Refresh Display' | 'REFRESH' | LIKE UI_FUNC | Public |
| MC_FC_TOGGLE_VISIBILITY_SEARCH | Constant | Function Code 'Toggle Visibility Search Area' | 'TOGVISS' | LIKE UI_FUNC | Public |
| MC_MSG_CLASS | Constant | Name Message Class | '/DSD/SL_SELECT' | LIKE DDOBJNAME | Public |
| MC_POOL_ADD | Constant | Highlight Reason | 2 | LIKE I | Public |
| MC_POOL_DESELECT | Constant | Highlight Reason | 4 | LIKE I | Public |
| MC_POOL_REMOVE | Constant | Highlight Reason | 1 | LIKE I | Public |
| MC_POOL_SELECT | Constant | Highlight Reason | 3 | LIKE I | Public |
| MC_VARHANDLE_RESULT | Constant | ID for Variant Saving Tree Control | 'REST' | LIKE CHAR4 | Public |
| MC_WA_ID_COMPLETE | Constant | ID Selection Area | 'COMPLETE' | LIKE /DSD/SL_ID_WA_AREA | Public |
| MC_WA_ID_SEARCH | Constant | ID Search Area | 'SEARCH' | LIKE /DSD/SL_ID_WA_AREA | Public |
| MR_CTRL_RESULT | Instance Attribute | Checker Event Display | LIKE /DSD/SL_CL_CTRL_SELECT_RESULT | Private | |
| MR_CTRL_SEARCH | Instance Attribute | Checker Search Function | LIKE /DSD/SL_CL_CTRL_SELECT_SEARCH | Private | |
| MR_SCREEN | Instance Attribute | GUI Basic Selection Area | LIKE /DSD/SL_CL_GUI_SELECT_SCREEN | Private |
Events of Class /DSD/SL_CL_TA_SELECT
Events are created within your class using special event handler methods. These must be registered at runtime for the event and can then be triggered using the ABAP syntax: RAISE EVENT EXPOTING... DATA_INVALID - Data InvalidREFRESH_FINISHED - Display refreshed
REFRESH_PREPARE - Prepare Refresh Display
START_WORK - Selection Executed
Links to Related Class(s)
/DSD/SL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects