/PF1/I_BNK_BATCH_ITEM

DDL: /PF1/I_BNK_BATCH_ITEM SQL: /PF1/IV_BCMITEM Type: view

Batch Items

/PF1/I_BNK_BATCH_ITEM is a CDS View that provides data about "Batch Items" in SAP S/4HANA. It reads from 1 data source (bnk_batch_item) and exposes 22 fields with key fields guid, item_no. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
bnk_batch_item bnk_batch_item from

Associations (1)

CardinalityTargetAliasCondition
[0..1] /PF1/I_CRM_JEST _crm_jest $projection.status = _crm_jest.objnr and _crm_jest.inact = ' '

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName /PF1/IV_BCMITEM view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Batch Items view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #TRANSACTIONAL view

Fields (22)

KeyFieldSource TableSource FieldDescription
KEY guid guid UUID 22 char.
KEY item_no item_no Sort No.
batch_no batch_no Batch Number
pay_grp_id pay_grp_id Pymt_Group_id
lifnr lifnr Vendor no.
kunnr kunnr Stock customer
empfg empfg Pmnt Recipient
vblnr vblnr Payment Doc.No.
grpno grpno Routine Number
laufd_o laufd_o Run On
laufi_o laufi_o Identification
zbukr zbukr Paying CoCd
laufd laufd Run On
laufi laufi Settlement ID
xvorl xvorl Proposal Run
status status Workflow Status
amt_rulecu amt_rulecu PymtAmt(rlcur)
hbkid hbkid House Bank
paym_system paym_system Payment System
objnr _crm_jest objnr Val. Obj. No.
stat _crm_jest stat Status of Time-Dependent Document Linkage
LongText _crm_jest LongText Text Name

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view /PF1/I_BNK_BATCH_ITEM.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: /PF1/IV_BCMITEM

CREATE VIEW /PF1/I_BNK_BATCH_ITEM AS
SELECT
  guid,
  item_no,
  batch_no,
  pay_grp_id,
  lifnr,
  kunnr,
  empfg,
  vblnr,
  grpno,
  laufd_o,
  laufi_o,
  zbukr,
  laufd,
  laufi,
  xvorl,
  status,
  amt_rulecu,
  hbkid,
  paym_system,
  _crm_jest.objnr AS objnr,
  _crm_jest.stat AS stat,
  _crm_jest.LongText AS LongText
FROM bnk_batch_item
LEFT OUTER JOIN /PF1/I_CRM_JEST AS _crm_jest ON status = _crm_jest.objnr AND _crm_jest.inact = ' '  -- association [0..1]
;