DPWTYC_MESSAGE_GET SAP Method Get Customizing DP Warranty status
Below is documentation, parameters and attributes of ABAP Method DPWTYC_MESSAGE_GET within SAP class DPWTY_CL_UI_CUSTOMIZING. 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 DPWTY_CL_UI_CUSTOMIZING 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 DPWTYC_MESSAGE_GET can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DPWTYC_MESSAGE_GET
.| Name | Type | Data Type | Description | Default Value |
| IV_MSGID | Importing | TYPE SYMSGID | Message ID (BE) | |
| IV_MSGNUMBER | Importing | TYPE SYMSGNO | Message Number (BE) | |
| IV_MSGTY | Importing | TYPE SYMSGTY | Message Type | |
| ES_MSG | Exporting | TYPE DPWTYC_MESSAGE_M | Massage Mapping | |
| ET_MSG | Exporting | TYPE DPWTYC_T_MESSAGE_M | Message Mapping Customizing |
Exceptions of Method DPWTYC_MESSAGE_GET
DPWTYC_MESSAGE_M
DPWTYC_T_MESSAGE_M
Example ABAP coding
DATA: lv_ES_MSG TYPE DPWTYC_MESSAGE_M,
lv_ET_MSG TYPE DPWTYC_T_MESSAGE_M,
lv_IV_MSGID TYPE SYMSGID,
lv_IV_MSGNUMBER TYPE SYMSGNO,
lv_IV_MSGTY TYPE SYMSGTY,
lv_other TYPE c.
CALL METHOD DPWTY_CL_UI_CUSTOMIZING=>DPWTYC_MESSAGE_GET(
EXPORTING
IV_MSGID = lv_IV_MSGID
IV_MSGNUMBER = lv_IV_MSGNUMBER
IV_MSGTY = lv_IV_MSGTY
IMPORTING
ES_MSG = lv_ES_MSG
ET_MSG = lv_ET_MSG ).
Links to Related Class(s)
DPWTY_CL...Full list of available SAP object classes
Search for further information about these or an SAP related objects