SAP BAPI_CLEAR_CASE_GET_DETAIL Function Module for Data Cleansing Tool: Read Details of a Data Cleansing Case









BAPI_CLEAR_CASE_GET_DETAIL is a standard bapi clear case get detail SAP function module available within SAP R/3 or S/4 Hana systems, depending on your version and release level. It is used for Data Cleansing Tool: Read Details of a Data Cleansing Case 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 clear case get detail FM, simply by entering the name BAPI_CLEAR_CASE_GET_DETAIL into the relevant SAP transaction such as SE37 or SE38.

Function Group: COM_CLEAR_CASE_BAPI
Program Name: SAPLCOM_CLEAR_CASE_BAPI
Main Program: SAPLCOM_CLEAR_CASE_BAPI
Appliation area:
Release date: 01-Sep-2003
Mode(Normal, Remote etc): Remote-Enabled
Update:



Function BAPI_CLEAR_CASE_GET_DETAIL 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_CLEAR_CASE_GET_DETAIL'"Data Cleansing Tool: Read Details of a Data Cleansing Case
EXPORTING
CLEARINGCASENUMBER = "Data Cleansing Case: Case Number
* CLEARINGCASEGUID = "Data Cleansing Case: Globally Unique Identifier

IMPORTING
CLEARINGCASEDATA = "Cleansing: Data of a Cleansing Case

TABLES
* TARGETLIST = "Data Cleansing: Data of Target Object List (for Initial Creation)
RETURN = "Return table
.



IMPORTING Parameters details for BAPI_CLEAR_CASE_GET_DETAIL

CLEARINGCASENUMBER - Data Cleansing Case: Case Number

Data type: BAPIBUS2132_CLEAR_CASE_KEY-CASE_NUMBER
Optional: No
Call by Reference: No ( called with pass by value option)

CLEARINGCASEGUID - Data Cleansing Case: Globally Unique Identifier

Data type: BAPIBUS2132_CLEAR_CASE_KEY-CASE_GUID
Optional: Yes
Call by Reference: No ( called with pass by value option)

EXPORTING Parameters details for BAPI_CLEAR_CASE_GET_DETAIL

CLEARINGCASEDATA - Cleansing: Data of a Cleansing Case

Data type: BAPIBUS2132_CLEAR_CASE_DATA
Optional: No
Call by Reference: No ( called with pass by value option)

TABLES Parameters details for BAPI_CLEAR_CASE_GET_DETAIL

TARGETLIST - Data Cleansing: Data of Target Object List (for Initial Creation)

Data type: BAPIBUS2132_TARG_DATA
Optional: Yes
Call by Reference: Yes

RETURN - Return table

Data type: BAPIRET2
Optional: No
Call by Reference: Yes

Copy and paste ABAP code example for BAPI_CLEAR_CASE_GET_DETAIL 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_targetlist  TYPE STANDARD TABLE OF BAPIBUS2132_TARG_DATA, "   
lv_clearingcasedata  TYPE BAPIBUS2132_CLEAR_CASE_DATA, "   
lv_clearingcasenumber  TYPE BAPIBUS2132_CLEAR_CASE_KEY-CASE_NUMBER, "   
lt_return  TYPE STANDARD TABLE OF BAPIRET2, "   
lv_clearingcaseguid  TYPE BAPIBUS2132_CLEAR_CASE_KEY-CASE_GUID. "   

  CALL FUNCTION 'BAPI_CLEAR_CASE_GET_DETAIL'  "Data Cleansing Tool: Read Details of a Data Cleansing Case
    EXPORTING
         CLEARINGCASENUMBER = lv_clearingcasenumber
         CLEARINGCASEGUID = lv_clearingcaseguid
    IMPORTING
         CLEARINGCASEDATA = lv_clearingcasedata
    TABLES
         TARGETLIST = lt_targetlist
         RETURN = lt_return
. " BAPI_CLEAR_CASE_GET_DETAIL




ABAP code using 7.40 inline data declarations to call FM BAPI_CLEAR_CASE_GET_DETAIL

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 CASE_NUMBER FROM BAPIBUS2132_CLEAR_CASE_KEY INTO @DATA(ld_clearingcasenumber).
 
 
"SELECT single CASE_GUID FROM BAPIBUS2132_CLEAR_CASE_KEY INTO @DATA(ld_clearingcaseguid).
 


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!