SAP BP1012 Ratings Table data and field list

BP1012 is a standard SAP Table which is used to store Ratings data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BP1012 table consists of various fields, each holding specific information or linking keys about Ratings data available in SAP. These include PARTNER (Business Partner Number), TIMESTAMP (Time Stamp; Obsolete), DIFTVAL (Differentiation Criterion), DATE_TO (Valid-to Date for Rating)... 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. .

BP1012 table Technical Details:

Delivery Class: A - Application table (master and transaction data)
Display/Maintenance via tcode SM30: Display/Maintenance Allowed but with Restrictions
SAP enhancement categories: Can be enhanced (character-type or numeric)


SAP BP1012 table 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 BP1012 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
CLIENTClient MANDTCLNT3T000MANDT
PARTNERBusiness Partner Number BU_PARTNERCHAR10BUT000ALPHABU_PARTNERBPABUPA
TIMESTAMPTime Stamp; Obsolete BP_TIMESTAMPCHAR14TIMESTAMP
DIFTVALDifferentiation Criterion BP_CRITERCHAR10Assigned to domainBP_CRITERBP_CRITER
DATE_TOValid-to Date for Rating FSBP_RATING_DATE_ENDDATS8DATS
GRADE_METHODRating Procedure BP_GRADE_METHODCHAR10TPZ21BP_GRADE_METHOD
DATE_FROMValid-from Date for Rating FSBP_RATING_DATE_STARTDATS8DATS
FLG_PERMITRating Allowed BP_RAT_PERMITCHAR1XFELD
GRADERating BP_GRADECHAR10TPZ22BP_GRADE
TENDENCYTrend BP_TENDENCYCHAR2BP_TENDENCY
DATE_WHENEntered-on Date for Rating FSBP_RATING_DATE_ENTEREDDATS8DATS
FLG_DEFAULTStandard Procedure BP_RAT_DEFAULTCHAR1XFELD
TEXTText for Ratings BP_GRADE_METHOD_TEXT60CHAR60TEXT60

Key field Non-key field



How do I retrieve data from SAP table BP1012 using ABAP code

The following ABAP code Example will allow you to do a basic selection on BP1012 to SELECT all data from the table
DATA: WA_BP1012 TYPE BP1012.

SELECT SINGLE *
FROM BP1012
INTO CORRESPONDING FIELDS OF WA_BP1012
WHERE...

How to access SAP table BP1012

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

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