SAP Application Interface Framework enables you to implement and monitor inbound and outbound ABAP proxy interfaces.
Review the following steps and diagram for an asynchronous inbound interface:

- Generate an ABAP proxy from a service interface.
- As a prerequisite to creating an SAP Application Interface Framework interface for an inbound proxy, you need a service interface. The service interface is created in the ESR or MDR and is not the task of the SAP Application Interface Framework interface developer.
- For this service interface, an inbound proxy class has to be generated in the back end system.
- Implement the proxy method by simply calling SAP Application Interface Framework and passing the input data and exception name to /AIF/CL_ENABLER_PROXY=>PROCESS_MESSAGE( ): You must pass the proxy method’s input structure and the exception class’ name.
- Create the destination structure: Another prerequisite is the destination structure. You have to create this structure. What the structure should look like depends on the BAPIs, function modules, and so on, that should be called in the SAP Application Interface Framework action.
- Create an SAP Application Interface Framework interface, and maintain the proxy class and destination structure.
- An SAP Application Interface Framework interface has to be created. You have to specify the name of your inbound proxy class; the raw structure and the record type should then be inserted automatically.
- Furthermore, you have to specify the SAP structure (destination structure). The engines used for inbound proxy messages are the default ones, therefore, you do not have to change anything here.
- Create a structure mapping, value mappings, actions, and so on, for the interface.