FOWB_DISPLAY SAP Method Customer Include for FOWB WBS Display
Below is documentation, parameters and attributes of ABAP Method FOWB_DISPLAY within SAP class IF_BADI_FWB_WBS_CI. 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 IF_BADI_FWB_WBS_CI 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 FOWB_DISPLAY can also be found below:
- Importing parameters
- Exporting parameters
- Changing parameters
- Returning parameters
- Exceptions
- Coding Examples
Parameters of Method FOWB_DISPLAY
.| Name | Type | Data Type | Description | Default Value |
| IN_POSID | Importing | TYPE PS_POSID | Work Breakdown Structure Element (WBS Element) | |
| CH_CNFW_DISPLAY_ST | Changing | TYPE CNFW_DISPLAY_ST | Display Forecast Work Bench |
Exceptions of Method FOWB_DISPLAY
This method does not have any exceptionsExample ABAP coding
DATA: lo_class TYPE REF TO IF_BADI_FWB_WBS_CI.
DATA: lv_CH_CNFW_DISPLAY_ST TYPE CNFW_DISPLAY_ST,
lv_IN_POSID TYPE PS_POSID,
lv_other TYPE c.
CALL METHOD lo_class=>FOWB_DISPLAY(
EXPORTING
IN_POSID = lv_IN_POSID
CHANGING
CH_CNFW_DISPLAY_ST = lv_CH_CNFW_DISPLAY_ST ).
Links to Related Class(s)
IF_BADI_...Full list of available SAP object classes
Search for further information about these or an SAP related objects