SAP IF_BSP_WD_POPUP OO Class - Popup Access Interface
IF_BSP_WD_POPUP is a standard SAP object class available within R/3 SAP systems depending on your version and release level. You can view/maintain the class details by entering its name into the relevant SAP transactions such as SE24, SE80 or even SE84. Below is the documentation available for class IF_BSP_WD_POPUP including details of:
- Interface class implementations
- Inheritance details
- Methods defined within class ( including link to full details )
- Attributes ( including initial values )
- Class Events
Method list of IF_BSP_WD_POPUP SAP class
A method is a coding block that performs a certain procedure (i.e. ABAP functionality) on an object within the overall SAP class. In simple terms if the object is an SAP database table a method could be the procedure to add a record or to delete a record. If you are new to OO in many respects, the implementation of a method is similar to a function module and can be called in a very similar way using CALL METHOD.
Instead of "CALL FUNCTION", Methods are referenced using the following syntax: CALL METHOD =>methodname EXPORTING/IMPORTING...
| Method Name | Description | Visability |
| CLOSE | Closes the Popup | Public |
| CALL METHOD if_bsp_wd_popup=>CLOSE...more details | ||
| GET_CONTEXT_NODE | Provides a Public Context Node of the Popup Component | Public |
| CALL METHOD if_bsp_wd_popup=>GET_CONTEXT_NODE...more details | ||
| GET_FIRED_OP_DATA_COLLECTION | Returns the Collection of the Outbound Plug Triggered | Public |
| CALL METHOD if_bsp_wd_popup=>GET_FIRED_OP_DATA_COLLECTION...more details | ||
| GET_FIRED_OUTBOUND_PLUG | Returns the Name of the Outbound Plug Triggered in Popup | Public |
| CALL METHOD if_bsp_wd_popup=>GET_FIRED_OUTBOUND_PLUG...more details | ||
| GET_NORESIZE | Liefert das Attribut 'noresize' fest | Public |
| CALL METHOD if_bsp_wd_popup=>GET_NORESIZE...more details | ||
| GET_TITLE | Delivers Popup Title | Public |
| CALL METHOD if_bsp_wd_popup=>GET_TITLE...more details | ||
|
| ||
| GET_WINDOW_HEIGHT | Delivers Height of Popup Window (Pixels) | Public |
| CALL METHOD if_bsp_wd_popup=>GET_WINDOW_HEIGHT...more details | ||
| GET_WINDOW_WIDTH | Delivers Width of Popup Window (Pixels) | Public |
| CALL METHOD if_bsp_wd_popup=>GET_WINDOW_WIDTH...more details | ||
| OPEN | Opens the Popup | Public |
| CALL METHOD if_bsp_wd_popup=>OPEN...more details | ||
| SET_DISPLAY_MODE | Sets Popup Display Mode | Public |
| CALL METHOD if_bsp_wd_popup=>SET_DISPLAY_MODE...more details | ||
| SET_NORESIZE | Legen Sie das Attribut 'noresize' fest | Public |
| CALL METHOD if_bsp_wd_popup=>SET_NORESIZE...more details | ||
| SET_ON_CLOSE_EVENT | Sets Event to Be Called When Closing Popup | Public |
| CALL METHOD if_bsp_wd_popup=>SET_ON_CLOSE_EVENT...more details | ||
| SET_TITLE | Sets Popup Title | Public |
| CALL METHOD if_bsp_wd_popup=>SET_TITLE...more details | ||
| SET_WINDOW_HEIGHT | Sets Height of Popup Window (Pixels) | Public |
| CALL METHOD if_bsp_wd_popup=>SET_WINDOW_HEIGHT...more details | ||
| SET_WINDOW_WIDTH | Sets Width of Popup Window (Pixels) | Public |
| CALL METHOD if_bsp_wd_popup=>SET_WINDOW_WIDTH...more details | ||
IF_BSP_WD_POPUP attributes
List of attributes within class CL_ABAP_CHAR_UTILITIES. These can be referenced using the following syntax CL_ABAP_CHAR_UTILITIES=>. Although depending on where you are inserting the ABAP code you do need to check if the attribute is public or private.
| Name | Level | Description | Initial Value | Type | Visability |
| C_CLOSED | Constant | Popup Is Closed | 'CLOSED' | LIKE STRING | Public |
| C_DISPLAY_MODE_PLAIN | Constant | Display Mode: Content Only | 'P' | LIKE CHAR1 | Public |
| C_DISPLAY_MODE_SURROUNDED | Constant | Display Mode: With Work Area Environment | 'S' | LIKE CHAR1 | Public |
| C_OPEN | Constant | Popup Is Open and Rendered | 'OPEN' | LIKE STRING | Public |
| C_TO_BE_CLOSED | Constant | Waiting to Be Closed | 'TB_CLOSED' | LIKE STRING | Public |
| C_TO_BE_OPENED | Constant | Waiting for Window to Be Opened | 'TB_OPENED' | LIKE STRING | Public |
| C_TO_BE_RENDERED | Constant | Waiting to Be Rendered | 'TB_RENDERED' | LIKE STRING | Public |
| DISPLAY_MODE | Instance Attribute | Current Display Mode | LIKE CHAR1 | Public | |
| IS_MODAL | Instance Attribute | Boolean Variable (X=true, -=false, space=unknown) | LIKE BOOLEAN | Public | |
| STATE | Instance Attribute | Current Popup Status | LIKE STRING | Public |
Links to Related Class(s)
IF_BSP_W...Full list of available SAP object classes
Search for further information about these or an SAP related objects