SAP BKKPOHD_TMP Planned Payment Order, Header Data Table data and field list

BKKPOHD_TMP is a standard SAP Table which is used to store Planned Payment Order, Header Data data in SAP systems, such as SAP R/3, S/4HANA, depending on the version and release level.

The BKKPOHD_TMP table consists of various fields, each holding specific information or linking keys about Planned Payment Order, Header Data data available in SAP. These include BKKRS (Bank Area), PAORN_TMP (Number of Planned Payment Order), PAORN (Payment order number), DATE_CR (Creation Date of the Data Medium)... 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. .

BKKPOHD_TMP 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)


SAP BKKPOHD_TMP 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 BKKPOHD_TMP 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 MANDTCLNT3T000MANDT
BKKRSBank Area BKK_BKKRSCHAR4TBKK01BKK_BKKRSBNS
PAORN_TMPNumber of Planned Payment Order BKK_PAORN_TMPNUMC12BKK_PAORNPYN
PAORNPayment order number BKK_PAORNNUMC12BKK_PAORNPYN
DATE_CRCreation Date of the Data Medium BKK_CRDATDDATS8DATUM
DATE_POSTPosting date BKK_PSTDATDATS8DATUM
XPOSTOLDIndicator: Posting Old Posting Date BKK_PSTOLDCHAR1XFELD
MEDIUMMedium BKK_MEDIUMCHAR4TBKKG1BKK_MEDIUM
PAYMETHODPayment Method BKK_PAYMETCHAR4Assigned to domainBKK_MEDIUMBCA_SH_PAYMETHOD
PROCESSProcesses in BCA BKK_PROCSSCHAR4TBKKIPROCBKK_PROCSS
POSTATUSStatus of a Payment Order BKK_POSTATCHAR2BKK_ITSTAT
RCV_EXTERNIndicator: Payment Order Has External Recipient BKK_RCVEXTCHAR1XFELD
RCV_EXTERN_ERRORIndicator: Error when sending external recipient data BKK_XEXTRCVCHAR1XFELD
XPRI_PPROCIndicator: Priority in Postprocessing BKK_XPRIPPCHAR1X
REMARKComment on Order/Item BKK_REMARKCHAR50BKK_CHAR50LOW
S_TRNSTYPESource Transaction Type BKK_STTYPECHAR4Assigned to domainBKK_TTYPE
RETURNKReturn Reason BKK_RKEYCHAR2
REFNO_CRReference Number of Creation BKK_CRNOCHAR20BKK_REFNO
REFNO_PAYMReference Number from Payment Transactions BKK_PAYMNOCHAR20BKK_REFNO
REFNO_PNDaybook number BKK_PNNOCHAR12ALPHABKK_PNNO
REF_IT_BKReference field: Bank Area Generating Payment Item BKK_REFITBCHAR4Assigned to domainBKK_BKKRS
REF_IT_NOReference Field: Number Generating Payment Item BKK_REFITDNUMC12Assigned to domainBKK_DOCNO
REF_IT_PSReference Field: Position Generating Payment Item BKK_REFITPNUMC3BKK_POSNO
REF_SONOReference: Standing Order Number BKK_RFSONONUMC10BKK_SONO
XREVERSEIndicator: Reversal Item BKK_XREVCHAR1XFELD
XDOCUMENTIndicator: Documented Return BKK_XDOCUCHAR1XFELD
ITEMCNTNumber of Processed Items BKK_ITCNTNUMC5NUMC5
AWSYSLogical System LOGSYSTEMCHAR10Assigned to domainALPHALOGSYS
AWTYPReference Transaction AWTYPCHAR5Assigned to domainAWTYP
AWKEYReference Key AWKEYCHAR20AWKEY
CRUSRUser who created the object BKK_CRUSRCHAR12USNAM
CRDATDate on which the object was created BKK_CRDATDATS8DATUM
CRTIMTime at which the object was created BKK_CRTIMTIMS6UZEIT
CHUSRLast user to change object BKK_CHUSRCHAR12USNAM
CHDATDate on which the object was last changed BKK_CHDATDATS8DATUM
CHTIMTime at Which Object was Last Changed BKK_CHTIMTIMS6UZEIT
RLUSRUser who released object BKK_RLUSRCHAR12USNAM
RLDATDate on which object was released BKK_RLDATDATS8DATUM
RLTIMTime at Which Object Was Released BKK_RLTIMTIMS6UZEIT
XMEMO_ITEMItems are memo items BCA_US_XMEMOCHAR1FLAG
DATE_DUEDue Date BKK_DTE_DATE_DUEDATS8BKK_DATUM
XSDDSEPA Direct Debit Order BKK_DTE_FLG_XSDDCHAR1BKK_XFLD

Key field Non-key field



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

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

SELECT SINGLE *
FROM BKKPOHD_TMP
INTO CORRESPONDING FIELDS OF WA_BKKPOHD_TMP
WHERE...

How to access SAP table BKKPOHD_TMP

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

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