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 directly

The 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

.

NameTypeData TypeDescriptionDefault Value
LOCATION_ABAPImportingTYPE
ANY
MSGIDImportingTYPE
SY-MSGID
Nachrichten, Nachrichtenklasse
MSGNOImportingTYPE
SY-MSGNO
Nachrichten, Nachrichtennummer
MSGTYImportingTYPE
SY-MSGTY
Nachrichten, Nachrichtentyp
MSGV1ImportingTYPE
SY-MSGV1
Nachrichten, Nachrichtenvariable
MSGV2ImportingTYPE
SY-MSGV2
Nachrichten, Nachrichtenvariable
MSGV3ImportingTYPE
SY-MSGV3
Nachrichten, Nachrichtenvariable
MSGV4ImportingTYPE
SY-MSGV4
Nachrichten, Nachrichtenvariable
IDExportingTYPE
ANY
LOCATIONExportingTYPE
ANY
SEVERITYExportingTYPE
ANY
TEXTExportingTYPE
ANY
URLExportingTYPE
ANY



Exceptions of Method GET_FAULT_DETAIL

This method does not have any exceptions

Example 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



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!