SAP BUPA_CLEAR_SAVE_POPUP Function Module for
BUPA_CLEAR_SAVE_POPUP is a standard bupa clear save popup SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used to perform a specific ABAP function and below is the pattern details, showing its interface including any import and export parameters, exceptions etc. there is also a full "cut and paste" ABAP pattern code example, along with implementation ABAP coding, documentation and contribution comments specific to this or related objects.
See here to view full function module documentation and code listing for bupa clear save popup FM, simply by entering the name BUPA_CLEAR_SAVE_POPUP into the relevant SAP transaction such as SE37 or SE38.
Function Group: BUPA_CLEARING_SAVE
Program Name: SAPLBUPA_CLEARING_SAVE
Main Program: SAPLBUPA_CLEARING_SAVE
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BUPA_CLEAR_SAVE_POPUP pattern details
In-order to call this FM within your sap programs, simply using the below ABAP pattern details to trigger the function call...or see the full ABAP code listing at the end of this article. You can simply cut and paste this code into your ABAP progrom as it is, including variable declarations.CALL FUNCTION 'BUPA_CLEAR_SAVE_POPUP'".
EXPORTING
IT_TARGETS = "
IS_CLEAR_CASE = "
* START_COLUMN = 15 "Screens, horizontal cursor position at PAI
* START_ROW = 4 "Screens, vertical cursor position at PAI
IMPORTING
ANSWER = "
EXCEPTIONS
ERROR_CONDITION = 1
IMPORTING Parameters details for BUPA_CLEAR_SAVE_POPUP
IT_TARGETS -
Data type: COMT_CLEAR_TARG_TOptional: No
Call by Reference: Yes
IS_CLEAR_CASE -
Data type: COMM_CLEAR_STACKOptional: No
Call by Reference: Yes
START_COLUMN - Screens, horizontal cursor position at PAI
Data type: SY-CUCOLDefault: 15
Optional: No
Call by Reference: Yes
START_ROW - Screens, vertical cursor position at PAI
Data type: SY-CUROWDefault: 4
Optional: No
Call by Reference: Yes
EXPORTING Parameters details for BUPA_CLEAR_SAVE_POPUP
ANSWER -
Data type: COptional: No
Call by Reference: Yes
EXCEPTIONS details
ERROR_CONDITION -
Data type:Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BUPA_CLEAR_SAVE_POPUP Function Module
The ABAP code below is a full code listing to execute function module POPUP_TO_CONFIRM including all data declarations. The code uses the original data declarations rather than the latest in-line data DECLARATION SYNTAX but I have included an ABAP code snippet at the end to show how declarations would look using the newer method of declaring data variables on the fly. This will allow you to compare and fully understand the new inline method. Please note some of the newer syntax such as the @DATA is not available until a later 4.70 service pack (SP8), which i why i have stuck to the origianl for this example.| DATA: | ||||
| lv_answer | TYPE C, " | |||
| lv_it_targets | TYPE COMT_CLEAR_TARG_T, " | |||
| lv_error_condition | TYPE COMT_CLEAR_TARG_T, " | |||
| lv_is_clear_case | TYPE COMM_CLEAR_STACK, " | |||
| lv_start_column | TYPE SY-CUCOL, " 15 | |||
| lv_start_row | TYPE SY-CUROW. " 4 |
|   CALL FUNCTION 'BUPA_CLEAR_SAVE_POPUP' " |
| EXPORTING | ||
| IT_TARGETS | = lv_it_targets | |
| IS_CLEAR_CASE | = lv_is_clear_case | |
| START_COLUMN | = lv_start_column | |
| START_ROW | = lv_start_row | |
| IMPORTING | ||
| ANSWER | = lv_answer | |
| EXCEPTIONS | ||
| ERROR_CONDITION = 1 | ||
| . " BUPA_CLEAR_SAVE_POPUP | ||
ABAP code using 7.40 inline data declarations to call FM BUPA_CLEAR_SAVE_POPUP
The below ABAP code uses the newer in-line data declarations. This allows you to see the coding differences/benefits of the later inline syntax. Please note some of the newer syntax below, such as the @DATA is not available until 4.70 EHP 8.| "SELECT single CUCOL FROM SY INTO @DATA(ld_start_column). | ||||
| DATA(ld_start_column) | = 15. | |||
| "SELECT single CUROW FROM SY INTO @DATA(ld_start_row). | ||||
| DATA(ld_start_row) | = 4. | |||
Search for further information about these or an SAP related objects