SAP BAPI_TEM_EXPOSURE_DELETE Function Module for Delete Exposure
BAPI_TEM_EXPOSURE_DELETE is a standard bapi tem exposure delete SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Delete Exposure processing and below is the pattern details for this FM, 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 bapi tem exposure delete FM, simply by entering the name BAPI_TEM_EXPOSURE_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: TEM_BAPI_EXPOSURE
Program Name: SAPLTEM_BAPI_EXPOSURE
Main Program: SAPLTEM_BAPI_EXPOSURE
Appliation area:
Release date: 07-Apr-2005
Mode(Normal, Remote etc): Remote-Enabled
Update:

Function BAPI_TEM_EXPOSURE_DELETE 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 'BAPI_TEM_EXPOSURE_DELETE'"Delete Exposure.
EXPORTING
EXPOSUREID = "Exposure ID
EXPOSUREORIGIN = "Exposure Origin
LOGSYSTEM = "Logical System
TESTRUN = "Switch to Simulation Mode for Write BAPIs
TABLES
RETURN = "Return Parameter(s)
IMPORTING Parameters details for BAPI_TEM_EXPOSURE_DELETE
EXPOSUREID - Exposure ID
Data type: BAPI5115-EXPOSURE_IDOptional: No
Call by Reference: No ( called with pass by value option)
EXPOSUREORIGIN - Exposure Origin
Data type: BAPI5115-EXPOSURE_ORIGINOptional: No
Call by Reference: No ( called with pass by value option)
LOGSYSTEM - Logical System
Data type: BAPI5115-LOG_SYSTEMOptional: No
Call by Reference: No ( called with pass by value option)
TESTRUN - Switch to Simulation Mode for Write BAPIs
Data type: BAPI5115-TESTRUNOptional: No
Call by Reference: No ( called with pass by value option)
TABLES Parameters details for BAPI_TEM_EXPOSURE_DELETE
RETURN - Return Parameter(s)
Data type: BAPIRET2Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BAPI_TEM_EXPOSURE_DELETE 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: | ||||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_exposureid | TYPE BAPI5115-EXPOSURE_ID, " | |||
| lv_exposureorigin | TYPE BAPI5115-EXPOSURE_ORIGIN, " | |||
| lv_logsystem | TYPE BAPI5115-LOG_SYSTEM, " | |||
| lv_testrun | TYPE BAPI5115-TESTRUN. " |
|   CALL FUNCTION 'BAPI_TEM_EXPOSURE_DELETE' "Delete Exposure |
| EXPORTING | ||
| EXPOSUREID | = lv_exposureid | |
| EXPOSUREORIGIN | = lv_exposureorigin | |
| LOGSYSTEM | = lv_logsystem | |
| TESTRUN | = lv_testrun | |
| TABLES | ||
| RETURN | = lt_return | |
| . " BAPI_TEM_EXPOSURE_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_TEM_EXPOSURE_DELETE
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 EXPOSURE_ID FROM BAPI5115 INTO @DATA(ld_exposureid). | ||||
| "SELECT single EXPOSURE_ORIGIN FROM BAPI5115 INTO @DATA(ld_exposureorigin). | ||||
| "SELECT single LOG_SYSTEM FROM BAPI5115 INTO @DATA(ld_logsystem). | ||||
| "SELECT single TESTRUN FROM BAPI5115 INTO @DATA(ld_testrun). | ||||
Search for further information about these or an SAP related objects