GET_DEFAULT_EMAIL_SETTINGS SAP Method Get default e-mail settings
Below is documentation, parameters and attributes of ABAP Method GET_DEFAULT_EMAIL_SETTINGS within SAP class /SCMTMS/IF_TEND_CUST_HANDLER. 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 /SCMTMS/IF_TEND_CUST_HANDLER into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method GET_DEFAULT_EMAIL_SETTINGS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_DEFAULT_EMAIL_SETTINGS
.| Name | Type | Data Type | Description | Default Value |
| EV_ALIAS | Exporting | TYPE /SCMTMS/TEND_SM59_ALIAS | SM59 Alias Contained in URL for External Work List | |
| EV_CUSTOM_THEME | Exporting | TYPE STRING | SAP UI Theme Applied to collaboration portal | |
| EV_ENCRYPT | Exporting | TYPE /SCMTMS/TEND_ENCRYPT_MAIL_FLAG | Encrypt E-mails | |
| EV_SIGN | Exporting | TYPE /SCMTMS/TEND_SIGN_MAIL_FLAG | Sign E-mails | |
| EV_STATUS | Exporting | TYPE /SCMTMS/TEND_MAIL_STATUS | Request Status Confirmation by E-mail | |
| EV_URL_TARGET | Exporting | TYPE /SCMTMS/TEND_EMAIL_URL_OPTIONS |
Exceptions of Method GET_DEFAULT_EMAIL_SETTINGS
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /SCMTMS/IF_TEND_CUST_HANDLER.
DATA: lv_EV_ALIAS TYPE /SCMTMS/TEND_SM59_ALIAS,
lv_EV_CUSTOM_THEME TYPE STRING,
lv_EV_ENCRYPT TYPE /SCMTMS/TEND_ENCRYPT_MAIL_FLAG,
lv_EV_SIGN TYPE /SCMTMS/TEND_SIGN_MAIL_FLAG,
lv_EV_STATUS TYPE /SCMTMS/TEND_MAIL_STATUS,
lv_EV_URL_TARGET TYPE /SCMTMS/TEND_EMAIL_URL_OPTIONS,
lv_other TYPE c.
CALL METHOD lo_class=>GET_DEFAULT_EMAIL_SETTINGS(
IMPORTING
EV_ALIAS = lv_EV_ALIAS
EV_CUSTOM_THEME = lv_EV_CUSTOM_THEME
EV_ENCRYPT = lv_EV_ENCRYPT
EV_SIGN = lv_EV_SIGN
EV_STATUS = lv_EV_STATUS
EV_URL_TARGET = lv_EV_URL_TARGET ).
Links to Related Class(s)
/SCMTMS/...Full list of available SAP object classes
Search for further information about these or an SAP related objects