REGISTER_SERVICE SAP Method Register a service interface for the given key









Below is documentation, parameters and attributes of ABAP Method REGISTER_SERVICE within SAP class CL_FPM_SERVICE_MANAGER. 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_FPM_SERVICE_MANAGER 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 REGISTER_SERVICE can also be found below:

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


Parameters of Method REGISTER_SERVICE

.

NameTypeData TypeDescriptionDefault Value
IO_FPMImportingTYPE REF TO
IF_FPM
Interface for accessing FPM functionality
IR_SERVICE_INTERFACEImportingTYPE REF TO
OBJECT
Reference to service interface
IV_SERVICE_KEYImportingTYPE
FPM_SERVICE_KEY
Service key



Exceptions of Method REGISTER_SERVICE

This method does not have any exceptions

Example ABAP coding


DATA: lv_IO_FPM TYPE IF_FPM,
lv_IR_SERVICE_INTERFACE TYPE OBJECT,
lv_IV_SERVICE_KEY TYPE FPM_SERVICE_KEY,
lv_other TYPE c.

CALL METHOD CL_FPM_SERVICE_MANAGER=>REGISTER_SERVICE(
EXPORTING
IO_FPM = lv_IO_FPM
IR_SERVICE_INTERFACE = lv_IR_SERVICE_INTERFACE
IV_SERVICE_KEY = lv_IV_SERVICE_KEY ).

Links to Related Class(s)

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