IC1_INIT_REF_TO_FPM SAP Method Initialize all reference attributes to FPM framework
Below is documentation, parameters and attributes of ABAP Method IC1_INIT_REF_TO_FPM within SAP class /BCV/CL_CFG_CENTER_ASSISTANCE. 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 /BCV/CL_CFG_CENTER_ASSISTANCE into the relevant SAP transactions such as SE24 or SE80, and then selecting the method you are interested in.
Method Type - Instance
This is an Instance Method so needs to be instantiated first before you can access any of the methods. I.e. you need to create a local variable of TYPE ref to the class.The following technical details of method IC1_INIT_REF_TO_FPM can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method IC1_INIT_REF_TO_FPM
.| Name | Type | Data Type | Description | Default Value |
| IO_FPM | Importing | TYPE REF TO IF_FPM | Reference to FPM interface | |
| EO_FPM_CNR_OIF | Exporting | TYPE REF TO IF_FPM_CNR_OIF | Reference to Context Navigation Region of OIF | |
| EO_FPM_IDR | Exporting | TYPE REF TO IF_FPM_IDR | Reference to the FPM header interface | |
| EO_FPM_MESSAGE_MGR | Exporting | TYPE REF TO IF_FPM_MESSAGE_MANAGER | Reference to FPM Message Manager | |
| EO_FPM_NAVIGATION | Exporting | TYPE REF TO IF_FPM_NAVIGATION | Reference to Navigation API IF_FPM_NAVIGATION |
Exceptions of Method IC1_INIT_REF_TO_FPM
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO /BCV/CL_CFG_CENTER_ASSISTANCE.
DATA: lv_EO_FPM_CNR_OIF TYPE IF_FPM_CNR_OIF,
lv_EO_FPM_IDR TYPE IF_FPM_IDR,
lv_EO_FPM_MESSAGE_MGR TYPE IF_FPM_MESSAGE_MANAGER,
lv_EO_FPM_NAVIGATION TYPE IF_FPM_NAVIGATION,
lv_IO_FPM TYPE IF_FPM,
lv_other TYPE c.
CALL METHOD lo_class=>IC1_INIT_REF_TO_FPM(
EXPORTING
IO_FPM = lv_IO_FPM
IMPORTING
EO_FPM_CNR_OIF = lv_EO_FPM_CNR_OIF
EO_FPM_IDR = lv_EO_FPM_IDR
EO_FPM_MESSAGE_MGR = lv_EO_FPM_MESSAGE_MGR
EO_FPM_NAVIGATION = lv_EO_FPM_NAVIGATION ).
Links to Related Class(s)
/BCV/CL_...Full list of available SAP object classes
Search for further information about these or an SAP related objects