DPWTYC_STATUS_MA_GET SAP Method Get Customizing DP Warranty status mapping
Below is documentation, parameters and attributes of ABAP Method DPWTYC_STATUS_MA_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_STATUS_MA_GET can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method DPWTYC_STATUS_MA_GET
.| Name | Type | Data Type | Description | Default Value |
| IV_ASTATE | Importing | TYPE DPWTY_ASTATE | Processing Status (BE) of Warranty Claim | |
| IV_DPSTATUS | Importing | TYPE DPWTY_DPSTATUS | Warranty Claim Status (FE) | |
| IV_REJCD | Importing | TYPE DPWTY_REJCD | Decision Code | |
| ES_STATUS_MA | Exporting | TYPE DPWTYC_STATUS_MA | Status assignment | |
| ET_STATUS_MA | Exporting | TYPE DPWTYC_T_STATUS_MA | Warranty Claim Status Mapping |
Exceptions of Method DPWTYC_STATUS_MA_GET
DPWTYC_STATUS_MA
DPWTYC_T_STATUS_MA
Example ABAP coding
DATA: lv_ES_STATUS_MA TYPE DPWTYC_STATUS_MA,
lv_ET_STATUS_MA TYPE DPWTYC_T_STATUS_MA,
lv_IV_ASTATE TYPE DPWTY_ASTATE,
lv_IV_DPSTATUS TYPE DPWTY_DPSTATUS,
lv_IV_REJCD TYPE DPWTY_REJCD,
lv_other TYPE c.
CALL METHOD DPWTY_CL_UI_CUSTOMIZING=>DPWTYC_STATUS_MA_GET(
EXPORTING
IV_ASTATE = lv_IV_ASTATE
IV_DPSTATUS = lv_IV_DPSTATUS
IV_REJCD = lv_IV_REJCD
IMPORTING
ES_STATUS_MA = lv_ES_STATUS_MA
ET_STATUS_MA = lv_ET_STATUS_MA ).
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