EXCLUDE_FCODES SAP Method Deactivation of Function Codes
Below is documentation, parameters and attributes of ABAP Method EXCLUDE_FCODES within SAP class IF_BADI_EMMA_CASE_TRANSACTION. There is also a number of example ABAP code snipts to help you use the functionality of this method.
This method is available within SAP systems depending on your version and release level, you can view further information by entering the class name IF_BADI_EMMA_CASE_TRANSACTION into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Static
This is a Static Method so you can call it directlyThe following technical details of method EXCLUDE_FCODES can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method EXCLUDE_FCODES
.| Name | Type | Data Type | Description | Default Value |
| IR_CASE | Importing | TYPE REF TO CL_EMMA_CASE | Clarification Case | |
| IV_WORK_MODE | Importing | TYPE EMMA_CTXN_WMODE | Work Mode for Clarification Case Transaction | |
| IS_CASE | Importing | TYPE EMMA_CASE | Clarification Case | |
| ET_FCODE | Returning | TYPE EMMA_FCODE_TAB | Table Type for Function Codes |
Exceptions of Method EXCLUDE_FCODES
This method does not have any exceptionsExample ABAP coding
DATA: lv_ET_FCODE TYPE EMMA_FCODE_TAB,
lv_IR_CASE TYPE CL_EMMA_CASE,
lv_IV_WORK_MODE TYPE EMMA_CTXN_WMODE,
lv_IS_CASE TYPE EMMA_CASE,
lv_other TYPE c.
CALL METHOD IF_BADI_EMMA_CASE_TRANSACTION=>EXCLUDE_FCODES(
EXPORTING
IR_CASE = lv_IR_CASE
IV_WORK_MODE = lv_IV_WORK_MODE
IS_CASE = lv_IS_CASE
RECEIVING
ET_FCODE = lv_ET_FCODE )
"Alternate coding for Method Call with returning parameter
lv_ET_FCODE = IF_BADI_EMMA_CASE_TRANSACTION=>EXCLUDE_FCODES(
EXPORTING
IR_CASE = lv_IR_CASE
IV_WORK_MODE = lv_IV_WORK_MODE
IS_CASE = lv_IS_CASE ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects