CLASSIFY_EXCEPTION SAP Method Claffiy Exception of Service Group Handler









Below is documentation, parameters and attributes of ABAP Method CLASSIFY_EXCEPTION within SAP class CL_BS_SOA_ASYNCPRX_OUT. There is also a number of example ABAP code snipts to help you use the functionality of this method.

This is a private Method so can only be executed from within the class itself. I.e. You could access it from another method of the class.

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_BS_SOA_ASYNCPRX_OUT 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 CLASSIFY_EXCEPTION can also be found below:

  • Importing parameters
  • Exporting parameters
  • Changing parameters
  • Returning parameters
  • Exceptions
  • Coding Examples


Parameters of Method CLASSIFY_EXCEPTION

.

NameTypeData TypeDescriptionDefault Value
IO_EXCEPTIONImportingTYPE REF TO
CX_SRT_PUBLIC_CONFIG
Error Class for Web Service Configuration
IV_WITH_LRDImportingTYPE
ABAP_BOOL
RV_ERROR_CATEGORYReturningTYPE
CHAR1
Category of error



Exceptions of Method CLASSIFY_EXCEPTION

This method does not have any exceptions

Example ABAP coding

This is a private Method so the below code can only be executed from within the class itself. I.e. from another method of the class.

DATA: lv_IO_EXCEPTION TYPE CX_SRT_PUBLIC_CONFIG,
lv_IV_WITH_LRD TYPE ABAP_BOOL,
lv_RV_ERROR_CATEGORY TYPE CHAR1,
lv_other TYPE c.

CALL METHOD CL_BS_SOA_ASYNCPRX_OUT=>CLASSIFY_EXCEPTION(
EXPORTING
IO_EXCEPTION = lv_IO_EXCEPTION
IV_WITH_LRD = lv_IV_WITH_LRD
RECEIVING
RV_ERROR_CATEGORY = lv_RV_ERROR_CATEGORY )



"Alternate coding for Method Call with returning parameter
lv_RV_ERROR_CATEGORY = CL_BS_SOA_ASYNCPRX_OUT=>CLASSIFY_EXCEPTION(
EXPORTING
IO_EXCEPTION = lv_IO_EXCEPTION
IV_WITH_LRD = lv_IV_WITH_LRD ).

Links to Related Class(s)

CL_BS_SO...
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!