INIT_FEEDER_PREVIEW SAP Method create feeder Instance according to WD Config
Below is documentation, parameters and attributes of ABAP Method INIT_FEEDER_PREVIEW within SAP class CL_FPM_LAUNCHPAD_UIBB_ASSIST. 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_LAUNCHPAD_UIBB_ASSIST 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 INIT_FEEDER_PREVIEW can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method INIT_FEEDER_PREVIEW
.| Name | Type | Data Type | Description | Default Value |
| IO_CONFIG_ASSIST | Importing | TYPE REF TO CL_FPM_HCT_GUIBB_ASSIST | Assistance class for FPM GUIBB config editor | |
| IO_CONTEXT_ROOT | Importing | TYPE REF TO IF_WD_CONTEXT_NODE | Web Dynpro: Interface for Context Nodes | |
| IO_RENDER | Importing | TYPE REF TO IF_FPM_GUIBB_RENDER | GUIBB Rendering | |
| IV_CHECK_ONLY | Importing | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') | |
| EV_ERROR | Returning | TYPE BOOLE_D | Data element for domain BOOLE: TRUE (='X') and FALSE (=' ') |
Exceptions of Method INIT_FEEDER_PREVIEW
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO CL_FPM_LAUNCHPAD_UIBB_ASSIST.
DATA: lv_EV_ERROR TYPE BOOLE_D,
lv_IO_CONFIG_ASSIST TYPE CL_FPM_HCT_GUIBB_ASSIST,
lv_IO_CONTEXT_ROOT TYPE IF_WD_CONTEXT_NODE,
lv_IO_RENDER TYPE IF_FPM_GUIBB_RENDER,
lv_IV_CHECK_ONLY TYPE BOOLE_D,
lv_other TYPE c.
CALL METHOD lo_class=>INIT_FEEDER_PREVIEW(
EXPORTING
IO_CONFIG_ASSIST = lv_IO_CONFIG_ASSIST
IO_CONTEXT_ROOT = lv_IO_CONTEXT_ROOT
IO_RENDER = lv_IO_RENDER
IV_CHECK_ONLY = lv_IV_CHECK_ONLY
RECEIVING
EV_ERROR = lv_EV_ERROR )
"Alternate coding for Method Call with returning parameter
lv_EV_ERROR = lo_class=>INIT_FEEDER_PREVIEW(
EXPORTING
IO_CONFIG_ASSIST = lv_IO_CONFIG_ASSIST
IO_CONTEXT_ROOT = lv_IO_CONTEXT_ROOT
IO_RENDER = lv_IO_RENDER
IV_CHECK_ONLY = lv_IV_CHECK_ONLY ).
Links to Related Class(s)
CL_FPM_L...Full list of available SAP object classes
Search for further information about these or an SAP related objects