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'.