SAP BAPI_CHAH_DELETE Function Module for Delete Chemical Analysis BAPI
BAPI_CHAH_DELETE is a standard bapi chah 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 Chemical Analysis BAPI 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 chah delete FM, simply by entering the name BAPI_CHAH_DELETE into the relevant SAP transaction such as SE37 or SE38.
Function Group: OIU_CHEMICAL_ANALYSIS
Program Name: SAPLOIU_CHEMICAL_ANALYSIS
Main Program: SAPLOIU_CHEMICAL_ANALYSIS
Appliation area:
Release date: N/A
Mode(Normal, Remote etc): Normal Function Module
Update:

Function BAPI_CHAH_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_CHAH_DELETE'"Delete Chemical Analysis BAPI.
EXPORTING
MP_NO = "Measurement Point Number
EFF_FROM_DT = "Effective From Date
IMPORTING
BAPI_HEADER = "BAPI Structure for CHAH *Header)
BAPI_DETAILS = "BAPI Structure for CHAC detail 1
BAPI_CHAH_PROP = "BAPI Structure for CHAC detail 3
TABLES
BAPI_CHAH_COMP = "BAPI Structure for CHAC detail 2
CHAH_READINGS = "measurement reading input
RETURN = "Return parameter
IMPORTING Parameters details for BAPI_CHAH_DELETE
MP_NO - Measurement Point Number
Data type: BAPI_OIU_CHAH-MP_NOOptional: No
Call by Reference: Yes
EFF_FROM_DT - Effective From Date
Data type: BAPI_OIU_CHAH-EFF_FROM_DTOptional: No
Call by Reference: Yes
EXPORTING Parameters details for BAPI_CHAH_DELETE
BAPI_HEADER - BAPI Structure for CHAH *Header)
Data type: BAPI_OIU_CHAHOptional: No
Call by Reference: Yes
BAPI_DETAILS - BAPI Structure for CHAC detail 1
Data type: BAPI_OIU_CHAH_1Optional: No
Call by Reference: Yes
BAPI_CHAH_PROP - BAPI Structure for CHAC detail 3
Data type: BAPI_OIU_CHAH_3Optional: No
Call by Reference: Yes
TABLES Parameters details for BAPI_CHAH_DELETE
BAPI_CHAH_COMP - BAPI Structure for CHAC detail 2
Data type: BAPI_OIU_CHAH_2Optional: No
Call by Reference: Yes
CHAH_READINGS - measurement reading input
Data type: BAPI_OIU_MEAS_SENDOptional: No
Call by Reference: Yes
RETURN - Return parameter
Data type: BAPIRET2Optional: No
Call by Reference: Yes
Copy and paste ABAP code example for BAPI_CHAH_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: | ||||
| lv_mp_no | TYPE BAPI_OIU_CHAH-MP_NO, " | |||
| lv_bapi_header | TYPE BAPI_OIU_CHAH, " | |||
| lt_bapi_chah_comp | TYPE STANDARD TABLE OF BAPI_OIU_CHAH_2, " | |||
| lv_eff_from_dt | TYPE BAPI_OIU_CHAH-EFF_FROM_DT, " | |||
| lv_bapi_details | TYPE BAPI_OIU_CHAH_1, " | |||
| lt_chah_readings | TYPE STANDARD TABLE OF BAPI_OIU_MEAS_SEND, " | |||
| lt_return | TYPE STANDARD TABLE OF BAPIRET2, " | |||
| lv_bapi_chah_prop | TYPE BAPI_OIU_CHAH_3. " |
|   CALL FUNCTION 'BAPI_CHAH_DELETE' "Delete Chemical Analysis BAPI |
| EXPORTING | ||
| MP_NO | = lv_mp_no | |
| EFF_FROM_DT | = lv_eff_from_dt | |
| IMPORTING | ||
| BAPI_HEADER | = lv_bapi_header | |
| BAPI_DETAILS | = lv_bapi_details | |
| BAPI_CHAH_PROP | = lv_bapi_chah_prop | |
| TABLES | ||
| BAPI_CHAH_COMP | = lt_bapi_chah_comp | |
| CHAH_READINGS | = lt_chah_readings | |
| RETURN | = lt_return | |
| . " BAPI_CHAH_DELETE | ||
ABAP code using 7.40 inline data declarations to call FM BAPI_CHAH_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 MP_NO FROM BAPI_OIU_CHAH INTO @DATA(ld_mp_no). | ||||
| "SELECT single EFF_FROM_DT FROM BAPI_OIU_CHAH INTO @DATA(ld_eff_from_dt). | ||||
Search for further information about these or an SAP related objects