BNK_BATCH_ITEM SAP (Batch Payment Items) Table details

Dictionary Type: Table
Description: Batch Payment Items




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




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

BNK_BATCH_ITEM is a standard SAP Table which is used to store Batch Payment Items data and is available within R/3 SAP systems depending on the version and release level.

The BNK_BATCH_ITEM table consists of various fields, each holding specific information or linking keys about Batch Payment Items data available in SAP. These include GUID (GUID to identify the batch), ITEM_NO (Item Count Number), BATCH_NO (Batch Identification Number), PAY_GRP_ID (Payment Group Identifier (FPM_Key)).. 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: Cannot Be Enhanced


SAP BNK_BATCH_ITEM 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
GUIDGUID to identify the batch BNK_COM_BTCH_GUIDRAW16SYSUUID
ITEM_NOItem Count Number BNK_COM_BTCH_CNTNUMC5BNK_COM_CTR
BATCH_NOBatch Identification Number BNK_COM_BTCH_NONUMC10BNK_COM_BATCH_NO
PAY_GRP_IDPayment Group Identifier (FPM_Key) BNK_COM_PAY_GRP_IDCHAR15BNK_COM_PAY_GRP_ID
LIFNRAccount Number of Vendor or Creditor LIFNRCHAR10Assigned to domainALPHALIFNRLIFKRED_C
KUNNRCustomer Numbers KUNNRCHAR10Assigned to domainALPHAKUNNRKUNC_KUNNR
EMPFGPayee code EMPFGCHAR16EMPFG
VBLNRDocument Number of the Payment Document VBLNRCHAR10ALPHABELNR
GRPNOGrouping Criterium for Payments GRPNO_FPMINT410GRPNO_FPM
LAUFD_ODate on Which the Program Is to Be Run LAUFDDATS8DATUM
LAUFI_OAdditional Identification LAUFICHAR6LAUFI
ZBUKRPaying company code DZBUKRCHAR4Assigned to domainBUKRS
LAUFDMerge Date BNK_COM_BTCH_MRGE_DATDATS8DATUM
LAUFIMerge Id BNK_COM_BTCH_MRGE_IDCHAR6LAUFI
XVORLIndicator: Only Proposal Run? XVORLCHAR1XFELD
STATUSStatus Id BNK_COM_BTCH_STATUS_IDRAW16BNK_COM_STATUS_ID
AMT_RULECUPayment amount in rule currency BNK_COM_PYMNTAMT_IN_RULCUCURR13(2) WRTV7
HBKIDShort Key for a House Bank HBKIDCHAR5Assigned to domainHBKID

Key field Non-key field



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

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

SELECT SINGLE *
FROM BNK_BATCH_ITEM
INTO CORRESPONDING FIELDS OF WA_BNK_BATCH_ITEM
WHERE...

How to access SAP table BNK_BATCH_ITEM

Within an ECC or HANA version of SAP you can also view further information about BNK_BATCH_ITEM 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!