SAP BONUSVALUE Values for Rebate Settlement Table data and field list

BONUSVALUE is a standard SAP Structure so does not store data like a database table does. It can be used to define the fields of other actual tables or to process "Values for Rebate Settlement" Information within sap ABAP programs.

This is done by declaring abap internal tables, work areas or database tables based on this Structure. These can then be used to store and process the required data appropriately.

i.e. DATA: wa_BONUSVALUE TYPE BONUSVALUE.

The BONUSVALUE table consists of various fields, each holding specific information or linking keys about Values for Rebate Settlement data available in SAP. These include KOPOS (Sequential number of the condition), VBELN (Sales and Distribution Document Number), KBETR (Rate (condition amount or percentage)), KMEIN (Condition unit)... See below for full list along with technical details, documentation, text table, check tables, foreign key relationships, conversion routines, relevant tcodes and example ABAP select code etc. .

BONUSVALUE structure Technical Details:

Delivery Class:
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BONUSVALUE structure fields - Full list of fields found in SAP data dictionary

Looking for S/4HANA specific information? Click here to explore the details, fields and extensibility available for this table in the SAP S/4HANA version of the BONUSVALUE table. Also check whether the table still exists or has been transformed into a CDS view as part of the HANA simplifications.
Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
KNUMHCondition record number KNUMHCHAR10KNUMB
KOPOSSequential number of the condition KOPOSNUMC2NUM02
VBELNSales and Distribution Document Number VBELNCHAR10Assigned to domainALPHAVBELNAUN
KBETRRate (condition amount or percentage) KBETRCURR11(2) WERTV6
KMEINCondition unit KMEINUNIT3Assigned to domainCUNITMEINS
KPEINCondition pricing unit KPEINDEC5KPEIN
KONWARate unit (currency or percentage) KONWACUKY5Assigned to domainWAERS
KRECHCalculation type for condition KRECHCHAR1KRECH
KAWRTCondition base value KAWRTCURR15(2) WERTV8
KSTBSScale base value of the condition KSTBSCURR15(2) WERTV8
KWAEHCondition currency (for cumulation fields) KWAEHCUKY5Assigned to domainWAERSFWS
AUWRTRebate: Value of payments in condition currency MC_AUWRT_KCURR19(2) WERTV10
RUWRTRebate: Accruals value in condition currency MC_RUWRT_KCURR19(2) WERTV10
VBTYPSD document category VBTYPCHAR1VBTYP
DOPENOpen document DOPENCHAR1XFELD
KUNN0Billing type for rebate processing BOFKTCHAR1BOFKT
FBUDADate on which services rendered FBUDADATS8DATUM
LUWRTRebate: Accruals reversed on the basis of local currency MC_RRWRTCURR19(2) WERTV10

Key field Non-key field



How do I retrieve data from SAP structure BONUSVALUE using ABAP code?

As BONUSVALUE is a database structure and not a table it does not store any data in the SAP data dictionary. The ABAP SELECT statement is therefore not appropriate and can not be performed on BONUSVALUE as there is no data to select.

How to access SAP table BONUSVALUE

Within an ECC or HANA version of SAP you can also view further information about BONUSVALUE and the data within it using relevant transactions such as

SE11 (ABAP Dictionary Maintenance)
SM30 (Maintain Table Data)
SE80 (Object Navigator)
SE16 (Data Browser).