SAP CL_PROXY_IFR OO Class - Proxy Generation: Communication with the IFR
CL_PROXY_IFR 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 CL_PROXY_IFR including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Interface Implementation
This OO class is an Interface Implementation, which means it will implement its own version of the methods from implementation class IF_PROXY_CONST_PRX_TYPEMethod list of CL_PROXY_IFR 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 |
| CALL_INTEGRATION_BUILDER | Call ESR Initial Screen | Public |
| CALL METHOD cl_proxy_ifr=>CALL_INTEGRATION_BUILDER...more details | ||
| CALL_INTEGRATION_DIRECTORY | obsolete:->same as call_integration_builder | Public |
| CALL METHOD cl_proxy_ifr=>CALL_INTEGRATION_DIRECTORY...more details | ||
| CALL_INTEGRATION_REPOSITORY | obsolete:->same as call_integration_builder | Public |
| CALL METHOD cl_proxy_ifr=>CALL_INTEGRATION_REPOSITORY...more details | ||
| CONNECTION_CHECK_DIALOG | Dialog to Check Connection | Public |
| CALL METHOD cl_proxy_ifr=>CONNECTION_CHECK_DIALOG...more details | ||
| SHOW_WSDL | Display WSDL Document | Public |
| CALL METHOD cl_proxy_ifr=>SHOW_WSDL...more details | ||
CL_PROXY_IFR 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 |
| BO_ENHANCEMENT | Instance Attribute | LIKE | Public | ||
| BUSINESS_OBJECT | Instance Attribute | Business Object | LIKE | Public | |
| DIRECTION_INBOUND | Constant | Interface Direction 'Inbound' | 'inbound' | LIKE STRING | Public |
| DIRECTION_NONE | Constant | Interface Direction 'Directionless' | 'none' | LIKE STRING | Public |
| DIRECTION_OUTBOUND | Constant | Interface Direction 'Outbound' | 'outbound' | LIKE STRING | Public |
| EXT_PROVIDER | Instance Attribute | LIKE | Public | ||
| FAULT_MESSAGE_DEFINITION | Instance Attribute | Fault Message Definition | LIKE | Public | |
| MAPPING | Instance Attribute | LIKE | Public | ||
| MAPPING_FACADE | Instance Attribute | LIKE | Public | ||
| MESSAGE_DEFINITION | Instance Attribute | Message Definition | LIKE | Public | |
| MESSAGE_INTERFACE | Instance Attribute | Message Interface | LIKE | Public | |
| NAMESPACE | Instance Attribute | Namespace | LIKE | Public | |
| PROCESS_AGENT | Instance Attribute | LIKE | Public | ||
| SERVICE_VARIANT | Instance Attribute | LIKE | Public | ||
| SOFTWARE_COMPONENT | Instance Attribute | Software component | LIKE | Public | |
| TYPE_DEFINITION | Instance Attribute | Data Type Definition | LIKE | Public | |
| TYPE_ENHANCEMENT | Instance Attribute | Data Type Enhancement | LIKE | Public |
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