SAP KFPP Document Header: Transfer Prices for Tasks Table data and field list

KFPP is a standard SAP Table which is used to store Document Header: Transfer Prices for Tasks data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The KFPP table consists of various fields, each holding specific information or linking keys about Document Header: Transfer Prices for Tasks data available in SAP. These include KOKRS (Controlling Area), BELNR (Document number of a transfer price agreement/allocation), BLPOS (Document item: transfer price agreement/allocation), ERFAS (Created by)... 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. .

KFPP 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 KFPP 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 KFPP 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
MANDTClient MANDTCLNT3Assigned to domainMANDT
KOKRSControlling Area KOKRSCHAR4Assigned to domainCACCDCAC
BELNRDocument number of a transfer price agreement/allocation KFPBNRCHAR10KFPKALPHAKFPBNR
BLPOSDocument item: transfer price agreement/allocation KFPBPOSNUMC3KFPBPOS
ERFASCreated by KBLERFCHAR12USNAM
ERDATEntry date KBLERDATDATS8DATUM
AENDELast changed by KBLAENCHAR12USNAM
AEDATDate of Last Change KBLAEDATDATS8DATUM
PTEXTItem Text SGTXTCHAR50TEXT50
ERLKZCompletion indicator for agreement item KFPERLKZCHAR1CHAR1_X
WAERSTransaction Currency TWAERCUKY5TCURCWAERSFWS
LOEKZDeletion Indicator KBLLOEKZCHAR1CHAR1_X
WTGESAmount in transaction currency KFPVTCCURR15(2) WERTV8
PRICETransfer Prices: Price per Unit of Measure KFPPRICECURR15(2) WERTV8
MGGESTotal Quantity MEGXXXQUAN15(3) MENGV8
MEINHUnit of Measure CO_MEINHUNIT3Assigned to domainCUNITMEINS
KSTARCost Element KSTARCHAR10CSKAALPHAKSTARKAT
ERLARRevenue element KFPERLARCHAR10CSKAALPHAKSTAR
FDATKAgreement due date KFPFDATVDATS8DATUM
URZUOSource Assignment URZUOCHAR3TSC0DALPHACO_SCZUO

Key field Non-key field



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

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

SELECT SINGLE *
FROM KFPP
INTO CORRESPONDING FIELDS OF WA_KFPP
WHERE...

How to access SAP table KFPP

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

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