SAP DFKKTHP Transfer Records for Billing on Behalf of 3rd Party Table data and field list

DFKKTHP is a standard SAP Table which is used to store Transfer Records for Billing on Behalf of 3rd Party data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The DFKKTHP table consists of various fields, each holding specific information or linking keys about Transfer Records for Billing on Behalf of 3rd Party data available in SAP. These include OPBEL (Number of Contract Accts Rec. & Payable Doc.), OPUPW (Repetition Item in Contract Account Document), OPUPK (Item number in contract account document), OPUPZ (Subitem for a Partial Clearing in Document)... 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. .

DFKKTHP 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 DFKKTHP 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 DFKKTHP 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
OPBELNumber of Contract Accts Rec. & Payable Doc. OPBEL_KKCHAR12Assigned to domainALPHAOPBEL_KK80B
OPUPWRepetition Item in Contract Account Document OPUPW_KKNUMC3OPUPW_KK
OPUPKItem number in contract account document OPUPK_KKNUMC4OPUPK_KK
OPUPZSubitem for a Partial Clearing in Document OPUPZ_KKNUMC3OPUPZ_KK
PAYBLDocument no. of payment PAYBL_KKCHAR12Assigned to domainALPHAOPBEL_KK
BUKRSCompany Code BUKRSCHAR4Assigned to domainBUKRSBUKC_T001
AUGRDClearing Reason AUGRD_KKCHAR2Assigned to domainAUGRD_KK
THPSTEntry status THPST_KKCHAR1THPST_KK
THPDTPlanned date for transfer of payment to third party THPDT_KKDATS8DATUM
GPARTBusiness Partner Number GPART_KKCHAR10Assigned to domainALPHABU_PARTNERBPA
VKONTContract Account Number VKONT_KKCHAR12Assigned to domainALPHAVKONT_KKKTOFKKVKP_F4
VTREFReference Specifications from Contract VTREF_KKCHAR20ALPHAVTREF_KKVTZ
THPRDActual Date for Transfer to Third Party THPRD_KKDATS8DATUM
THBLNDocument number with which payment was paid over THBLN_KKCHAR10ALPHABELNR
THBLN_TYPEDocument Number Type THBLN_TYPE_KKCHAR1THBLN_TYPE_KK
BCBLNDocument Number of Posting to Service Provider Account BCBLN_KKCHAR12Assigned to domainALPHAOPBEL_KK
GJAHRFiscal Year GJAHRNUMC4GJAHRGJAHRGJR
BUKAGCompany Code of Aggregated Posting BUKAG_KKCHAR4Assigned to domainBUKRSBUKC_T001
SENIDSender ID SENID_KKCHAR40SENID_KK
RECIDRecipient RECID_KKCHAR40RECID_KK
SENRFReference number assigned by the sender SENRF_KKCHAR40SENRF_KK
RECRFReference number assigned by recipient RECRF_KKCHAR40RECRF_KK
HERKFDocument Origin Key HERKF_KKCHAR2Assigned to domainHERKF_KK
APPLKApplication area APPLK_KKCHAR1APPLK_KK
HVORGMain Transaction for Line Item HVORG_KKCHAR4Assigned to domainHVORG_KK8HV
TVORGSubtransaction for Document Item TVORG_KKCHAR4Assigned to domainTVORG_KK
WAERSTransaction Currency BLWAE_KKCUKY5Assigned to domainWAERSFWS
BETRWAmount in Transaction Currency with +/- Sign BETRW_KKCURR13(2) WRTV7
CRSRFReference Number Identical for Sender and Recipient CRSRF_KKCHAR40

Key field Non-key field



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

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

SELECT SINGLE *
FROM DFKKTHP
INTO CORRESPONDING FIELDS OF WA_DFKKTHP
WHERE...

How to access SAP table DFKKTHP

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

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