Fonction SAP BAPI_CLEAR_CASE_CHANGE - Data Cleansing Tool: Change Data Cleansing Case

Paramètre Reférence Type Long. Valeur par déf. Facultatif Description
CLEARINGCASEDATA BAPIBUS2132_CLEAR_CASE_DATA u 90 Data of a Cleansing Case
CLEARINGCASEDATAX BAPIBUS2132_CLEAR_CASE_DATAX u 8 Change Flag for Data of a Cleansing Case
CLEARINGCASEGUID BAPIBUS2132_CLEAR_CASE_KEY-CASE_GUID C 32 X Data Cleansing Case: GUID
CLEARINGCASENUMBER BAPIBUS2132_CLEAR_CASE_KEY-CASE_NUMBER C 10 Data Cleansing Case: Number

Paramètre Reférence Long. Facultatif Description
RETURN BAPIRET2 548 Return parameter table
TARGETLIST BAPIBUS2132_TARG_DATA 126 X Data Cleansing: Data of Target Object List(Non-Key Fields)

Functionality
BAPI function for changing a data cleansing case.
Using this function, you can change the general attributes of a datacleansing case, like status, priority etc. Fill the fields in thestructure ClearingCaseData and state the new values.
In addition, identify the fields that should be changed in thestructure ClearingCaseDataX. Set X in all fields for which youhave given new values in the structure ClearingCaseData.
You must state the key of the data cleansing case to be changed in thefield ClearingCaseNumber.

Example
data: lv_clearing_case_number
type BAPIBUS2132_CLEAR_CASE_KEY-CASE_NUMBER,
ls_clearing_case_data type BAPIBUS2132_CLEAR_CASE_DATA,
ls_clearing_case_data_X type BAPIBUS2132_CLEAR_CASE_DATAX,
lt_results type table of bapiret2.
lv_clearing_case_number = 1.
ls_clearing_case_data-priority = 1.
ls_clearing_case_data_X-priority = 'X'.
CALL FUNCTION 'BAPI_CLEAR_CASE_CHANGE'
EXPORTING
CLEARINGCASENUMBER = lv_clearing_case_number
CLEARINGCASEDATA = ls_clearing_case_data
CLEARINGCASEDATAX = ls_clearing_case_data_X
TABLES
RETURN = lt_results.
if not lt_results is initial.
* insert error handling here
endif.

Description
Central administrative data of a data cleansing case.

Description
Change indicator for central data.

Value range
One X-indicator per field of central data.

Description
Globally Unique Identifier (GUID) of a data cleansing case.
The GUID can be used as an alternative to the local case number foridentification.

Description
Number of a data cleansing case.

Value range
Primary key 10 characters in length.
Alternatively, the GUID can also be transferred as the key (ParameterCLEARCASEGUID).

Description
Results table for error messages

Default
Empty

Description
Target object list
The target object list can be subsequently changed as of Release 6.20.Existing target objects cannot be deleted, just assigned the status 'R'for 'rejected'.