SAP IF_SOAP_FAULT OO Class -
IF_SOAP_FAULT is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class IF_SOAP_FAULT including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of IF_SOAP_FAULT SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| ADD_NOT_UNDERSTOOD_HDR | Add header marked as mandatory but it is not understood | Public |
| CALL METHOD if_soap_fault=>ADD_NOT_UNDERSTOOD_HDR...more details | ||
| ADD_REASON | Add Description for Fault Reason | Public |
| CALL METHOD if_soap_fault=>ADD_REASON...more details | ||
| ADD_SUBCODE | Add Code to Subcodes | Public |
| CALL METHOD if_soap_fault=>ADD_SUBCODE...more details | ||
| ADD_SUPPORTED_ENVELOPE | Add Supported Envelope | Public |
| CALL METHOD if_soap_fault=>ADD_SUPPORTED_ENVELOPE...more details | ||
| ADD_UPGRADE_HDR | Add Upgrade Element | Public |
| CALL METHOD if_soap_fault=>ADD_UPGRADE_HDR...more details | ||
| GET_NOT_UNDERSTOOD_HDR_TAB | get table with not understood headers | Public |
| CALL METHOD if_soap_fault=>GET_NOT_UNDERSTOOD_HDR_TAB...more details | ||
|
| ||
| GET_UPGRADE_HDR | Get Upgrade Element | Public |
| CALL METHOD if_soap_fault=>GET_UPGRADE_HDR...more details | ||
| RAISE_FAULT | Trigger Internal Exception to Send Fault | Public |
| CALL METHOD if_soap_fault=>RAISE_FAULT...more details | ||
| SET_CODE_BY_ID | Set Fault Code and Fault Name from Fault ID | Public |
| CALL METHOD if_soap_fault=>SET_CODE_BY_ID...more details | ||
| SET_CODE_BY_NAME | Set Fault Code and Fault Name from Fault Name | Public |
| CALL METHOD if_soap_fault=>SET_CODE_BY_NAME...more details | ||
| SET_NODENAME | Who is responsible for this fault? | Public |
| CALL METHOD if_soap_fault=>SET_NODENAME...more details | ||
| SET_ROLE | Set Current Role of Current User | Public |
| CALL METHOD if_soap_fault=>SET_ROLE...more details | ||
IF_SOAP_FAULT attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| CODE | Instance Attribute | LIKE TSOAP_FAULT_CODE_TYPE | Public | ||
| DETAIL | Instance Attribute | Abstract SXML/SXMLP Part | LIKE IF_SXMLP_PART_ABSTRACT | Public | |
| NODENAME | Instance Attribute | URI of Node that Signals Fault | LIKE ANYURI | Public | |
| NOT_UNDERSTOOD_TAB | Instance Attribute | LIKE TSOAP_12_NOT_UNDERSTOOD_TAB | Public | ||
| REASON | Instance Attribute | LIKE TSOAP_FAULT_REASON_TAB | Public | ||
| ROLE | Instance Attribute | LIKE ANYURI | Public | ||
| SUBCODES | Instance Attribute | LIKE TSOAP_12_SUBCODES_TAB | Public | ||
| SUPPORTED_ENV_TAB | Instance Attribute | LIKE TSOAP_12_SUPPORTED_ENV_TAB | Public | ||
| TEXT | Instance Attribute | LIKE TSOAP_12_REASONTEXT | Public | ||
| UPGRADE | Instance Attribute | LIKE IF_SXMLP_LIST | Public | ||
| VALUE | Instance Attribute | LIKE TSOAP_FAULT_CODE_TYPE | Public |
Links to Related Class(s)
IF_SOAP_...Full list of available SAP object classes
Search for further information about these or an SAP related objects