GET_FAULT_DETAIL SAP Method of class CL_PROXY_FAULT
Below is documentation, parameters and attributes of ABAP Method GET_FAULT_DETAIL within SAP class CL_PROXY_FAULT. 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_PROXY_FAULT 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_FAULT_DETAIL can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method GET_FAULT_DETAIL
.| Name | Type | Data Type | Description | Default Value |
| LOCATION_ABAP | Importing | TYPE ANY | ||
| MSGID | Importing | TYPE SY-MSGID | Nachrichten, Nachrichtenklasse | |
| MSGNO | Importing | TYPE SY-MSGNO | Nachrichten, Nachrichtennummer | |
| MSGTY | Importing | TYPE SY-MSGTY | Nachrichten, Nachrichtentyp | |
| MSGV1 | Importing | TYPE SY-MSGV1 | Nachrichten, Nachrichtenvariable | |
| MSGV2 | Importing | TYPE SY-MSGV2 | Nachrichten, Nachrichtenvariable | |
| MSGV3 | Importing | TYPE SY-MSGV3 | Nachrichten, Nachrichtenvariable | |
| MSGV4 | Importing | TYPE SY-MSGV4 | Nachrichten, Nachrichtenvariable | |
| ID | Exporting | TYPE ANY | ||
| LOCATION | Exporting | TYPE ANY | ||
| SEVERITY | Exporting | TYPE ANY | ||
| TEXT | Exporting | TYPE ANY | ||
| URL | Exporting | TYPE ANY |
Exceptions of Method GET_FAULT_DETAIL
This method does not have any exceptionsExample ABAP coding
DATA: lv_ID TYPE ANY,
lv_LOCATION TYPE ANY,
lv_LOCATION_ABAP TYPE ANY,
lv_MSGID TYPE SY-MSGID,
lv_MSGNO TYPE SY-MSGNO,
lv_MSGTY TYPE SY-MSGTY,
lv_MSGV1 TYPE SY-MSGV1,
lv_MSGV2 TYPE SY-MSGV2,
lv_MSGV3 TYPE SY-MSGV3,
lv_MSGV4 TYPE SY-MSGV4,
lv_SEVERITY TYPE ANY,
lv_TEXT TYPE ANY,
lv_URL TYPE ANY,
lv_other TYPE c.
CALL METHOD CL_PROXY_FAULT=>GET_FAULT_DETAIL(
EXPORTING
LOCATION_ABAP = lv_LOCATION_ABAP
MSGID = lv_MSGID
MSGNO = lv_MSGNO
MSGTY = lv_MSGTY
MSGV1 = lv_MSGV1
MSGV2 = lv_MSGV2
MSGV3 = lv_MSGV3
MSGV4 = lv_MSGV4
IMPORTING
ID = lv_ID
LOCATION = lv_LOCATION
SEVERITY = lv_SEVERITY
TEXT = lv_TEXT
URL = lv_URL ).
Links to Related Class(s)
CL_PROXY...Full list of available SAP object classes
Search for further information about these or an SAP related objects