BKKSO SAP (BCA: Standing Orders) Table details

Dictionary Type: Table
Description: BCA: Standing Orders




ABAP Code to SELECT data from BKKSO
Related tables to BKKSO
Access table BKKSO




Table field list including key, data, relationships and ABAP select examples

BKKSO is a standard SAP Table which is used to store BCA: Standing Orders data and is available within R/3 SAP systems depending on the version and release level.

The BKKSO table consists of various fields, each holding specific information or linking keys about BCA: Standing Orders data available in SAP. These include BKKRS (Bank Area), ACNUM_INT (Internal Account Number for Current Account), SONO (Standing Order Number), XRELEASED (Indicator: Released Version of the Standing Order).. 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. .

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 BKKSO table fields - Full list of fields found in SAP data dictionary

Field Description Data Element Data Type length (Dec) Check table Conversion Routine Domain Name MemoryID SHLP
MANDTClient MANDTCLNT3Assigned to domainMANDT
BKKRSBank Area BKK_BKKRSCHAR4TBKK01BKK_BKKRSBNS
ACNUM_INTInternal Account Number for Current Account BKK_ACCNTCHAR10BKK40ALPHABKK_ACCNTACI
SONOStanding Order Number BKK_SONONUMC10BKK_SONO
XRELEASEDIndicator: Released Version of the Standing Order BKK_XSTOR_RELEASEDCHAR1XFELD
TRNSTYPETransaction Type BKK_TTYPECHAR4TBKKG3BKK_TTYPE
PAYMETHODPayment Method BKK_PAYMETCHAR4TBKKG1BKK_MEDIUMBCA_SH_PAYMETHOD
PERIODPeriod BKK_PERIODNUMC3BKK_PERIOD
PER_UNITPeriod Unit BKK_PUNITCHAR1Assigned to domainBKK_PUNIT
KEY_DATEKey date BKK_KDATENUMC2BKK_DAY
NEXT_DATENext Run BKK_NEDATEDATS8DATUM
SHIFT_WDAYType of Shift of Due Date to Working Day BKK_WORKDAYSHIFTNUMC1T_SWERK
SUSP_FROMSuspend from BKK_SFDATEDATS8DATUM
SUSP_TOSuspend till BKK_SODATEDATS8DATUM
LAST_DATELast Execution BKK_LDATEDATS8DATUM
TRNSTYPE_RTransaction Type Offsetting Posting for Payment Order BKK_TTYPERCHAR4TBKKG3BKK_TTYPE
RCV_BANKSCountry Key of Bank of Recipient BKK_RCVBKSCHAR3T005LAND1
RCV_BANKLBank Key of Recipient BKK_RCVBKLCHAR15BANKK
RCV_SWIFTSWIFT/BIC for International Payments SWIFTCHAR11SWIFT
RCV_ACEXTAccount Number of Recipient BKK_RCVACNCHAR35ACEXTBKK_ACEXT
RCV_BKSBank Control Key BKK_BKSCHAR2BKONT
RCV_IBANInternational Bank Account Number BKK_ACIBANCHAR35ALPHABKK_ACIBAN
RCV_NAMERecipient name BKK_RCVNAMCHAR70BKK_NAME
MEDIUMMedium BKK_MEDIUMCHAR4TBKKG1BKK_MEDIUM
STATUSStatus of a Standing Order BKK_SOSTATCHAR2BKK_SOSTAT
PUBLIC_CONT_L1Public Field Length 35 BCA_DTE_CHAR035CHAR35BCA_DOM_CF_CHAR35
PUBLIC_CONT_L2Public Field Length 35 BCA_DTE_CHAR035CHAR35BCA_DOM_CF_CHAR35
PUBLIC_CONT_L3Public Field Length 35 BCA_DTE_CHAR035CHAR35BCA_DOM_CF_CHAR35
PUBLIC_CONT_L4Public Field Length 35 BCA_DTE_CHAR035CHAR35BCA_DOM_CF_CHAR35
PUBLIC_CONT_S1Public Field Length 20 BCA_DTE_CHAR020CHAR20BCA_DOM_CF_CHAR20
PUBLIC_CONT_S2Public Field Length 20 BCA_DTE_CHAR020CHAR20BCA_DOM_CF_CHAR20
MANDATE_IDMandate Reference BKK_DTE_MND_IDCHAR35BKK_MND_ID
UCICreditor Identification BKK_DTE_CRD_IDCHAR35BKK_CRD_ID
DATE_DUEDue Date BKK_DTE_DATE_DUEDATS8BKK_DATUM
XDELENo longer needed BKK_XDELE_DUMCHAR1XFELD
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
TCURTransaction Currency BKK_TCURCUKY5TCURCWAERS
T_AMOUNTAmount in Transaction Currency BKK_TAMNTCURR17(2) BKK_ITAMT
.INCLU--AP 0
TAX_YEARTax-year RTP_US_TAXYEARNUMC4RTP_US_DATE_YEAR
AMOUNT_IDAmount identifier code RTP_US_AMN_IDCHAR2RTP_US_AMN_ID
CONTRIB_IDContribution identifier RTP_US_CON_IDCHAR2RTP_US_CON_ID
IRS_DCODERetirement plan distribution code RTP_US_IRSCHAR1RTP_US_IRS
IRS_SCODERetirement plan distribution sub-code RTP_US_IRS_SUBCHAR1RTP_US_IRS
WH_AMOUNT_TOTALTotal fed withholding amount for IRA distribution payment RTP_US_WH_AMOUNT_TOTALCURR17(2) RTP_US_AMOUNT

Key field Non-key field



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

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

SELECT SINGLE *
FROM BKKSO
INTO CORRESPONDING FIELDS OF WA_BKKSO
WHERE...

How to access SAP table BKKSO

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

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


Search for further information about these or an SAP related objects



Comments on this SAP object

What made you want to lookup this SAP object? Please tell us what you were looking for and anything you would like to be included on this page!