SAP /SCMB/IF_SCU_INTERACTIVE OO Class - Interactive Interface
/SCMB/IF_SCU_INTERACTIVE 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 /SCMB/IF_SCU_INTERACTIVE 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 /SCMB/IF_SCU_INTERACTIVE 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 |
| DO_COMMAND | Ends a Command | Public |
| CALL METHOD /scmb/if_scu_interactive=>DO_COMMAND...more details | ||
/SCMB/IF_SCU_INTERACTIVE 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 |
| CO_EC_BACK | Constant | Command Code | 'BACK' | LIKE /SCMB/COMMAND | Public |
| CO_EC_CANCEL | Constant | Command Code | 'CANCEL' | LIKE /SCMB/COMMAND | Public |
| CO_EC_CHANGE | Constant | Command Code | 'CHANGE' | LIKE /SCMB/COMMAND | Public |
| CO_EC_CREATE | Constant | Command Code | 'CREATE' | LIKE /SCMB/COMMAND | Public |
| CO_EC_DELETE | Constant | Command Code | 'DELSCU' | LIKE /SCMB/COMMAND | Public |
| CO_EC_EXIT | Constant | Command Code | 'EXIT' | LIKE /SCMB/COMMAND | Public |
| CO_EC_GEOCODE | Constant | Command Code | 'GEOCODE' | LIKE /SCMB/COMMAND | Public |
| CO_EC_GEODEL | Constant | Command Code | 'GEODEL' | LIKE /SCMB/COMMAND | Public |
| CO_EC_HIERMAINT | Instance Attribute | LIKE | Private | ||
| CO_EC_SAVE | Constant | Command Code | 'SAVE' | LIKE /SCMB/COMMAND | Public |
| CO_EC_SHOW | Constant | Command Code | 'SHOW' | LIKE /SCMB/COMMAND | Public |
| CO_EC_TAB01 | Constant | Command Code | 'SCU_TABSTRP_FC1' | LIKE /SCMB/COMMAND | Public |
| CO_EC_TAB02 | Constant | Command Code | 'SCU_TABSTRP_FC2' | LIKE /SCMB/COMMAND | Public |
| CO_EC_TAB03 | Constant | Command Code | 'SCU_TABSTRP_FC3' | LIKE /SCMB/COMMAND | Public |
| CO_IC_ADDRESS_CHANGED | Constant | Command Code | 'IC_ADDRESS_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_ALTKEYS_CHANGED | Constant | Command Code | 'IC_ALTKEYS_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_DELFLG_CHANGED | Constant | Command Code | 'IC_DELFLG_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_DESCR_CHANGED | Constant | Command Code | 'IC_DESCR_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_GEODATA_CHANGED | Constant | Command Code | 'IC_GEODATA_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_INIT | Constant | Command Code | 'IC_INIT' | LIKE /SCMB/COMMAND | Public |
| CO_IC_PARTNER_CHANGED | Constant | Command Code | 'IC_PARTNER_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_ROLE_CHANGED | Constant | Command Code | 'IC_ROLE_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_TZONE_CHANGED | Constant | Command Code | 'IC_TZONE_CHANGED' | LIKE /SCMB/COMMAND | Public |
| CO_IC_UPDATE | Constant | Command Code | 'IC_UPDATE' | LIKE /SCMB/COMMAND | Public |
Events of Class /SCMB/IF_SCU_INTERACTIVE
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... COMMAND - Publishes Command to Be ExecutedLinks to Related Class(s)
/SCMB/IF...Full list of available SAP object classes
Search for further information about these or an SAP related objects