GET_ADDRESS SAP Method Returns the e-mail address of a user
Below is documentation, parameters and attributes of ABAP Method GET_ADDRESS within SAP class CL_DEMO_WDR_IFBA_EMAIL. 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 CL_DEMO_WDR_IFBA_EMAIL 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 GET_ADDRESS can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_ADDRESS
.| Name | Type | Data Type | Description | Default Value |
| USER | Importing | TYPE SYUNAME | User Name | |
| ADDRESS | Returning | TYPE AD_SMTPADR | E-Mail Address |
Exceptions of Method GET_ADDRESS
This method does not have any exceptionsExample ABAP coding
DATA: lv_ADDRESS TYPE AD_SMTPADR,
lv_USER TYPE SYUNAME,
lv_other TYPE c.
CALL METHOD CL_DEMO_WDR_IFBA_EMAIL=>GET_ADDRESS(
EXPORTING
USER = lv_USER
RECEIVING
ADDRESS = lv_ADDRESS )
"Alternate coding for Method Call with returning parameter
lv_ADDRESS = CL_DEMO_WDR_IFBA_EMAIL=>GET_ADDRESS(
EXPORTING
USER = lv_USER ).
Links to Related Class(s)
CL_DEMO_...Full list of available SAP object classes
Search for further information about these or an SAP related objects