E_Apcheckbook

DDL: E_APCHECKBOOK SQL: EAPCHECKBOOK Type: view EXTENSION Package: ODATA_CHECK_BOOKS

CDS view Checkbook extensibility

E_Apcheckbook is a Extension CDS View that provides data about "CDS view Checkbook extensibility" in SAP S/4HANA. It reads from 1 data source (pcec) and exposes 4 fields with key fields PaymentCompanyCode, HouseBank, HouseBankAccount, Chequebook. Part of development package ODATA_CHECK_BOOKS.

Data Sources (1)

SourceAliasJoin Type
pcec Persistence from

Annotations (5)

NameValueLevelField
VDM.viewType #EXTENSION view
AbapCatalog.sqlViewName EAPCHECKBOOK view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.serviceQuality #P view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PaymentCompanyCode pcec zbukr Paying CoCd
KEY HouseBank pcec hbkid House Bank
KEY HouseBankAccount pcec hktid House Bank Account
KEY Chequebook pcec stapl Lot Number

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 E_Apcheckbook.
-- 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: EAPCHECKBOOK

CREATE VIEW E_Apcheckbook AS
SELECT
  Persistence.zbukr AS PaymentCompanyCode,
  Persistence.hbkid AS HouseBank,
  Persistence.hktid AS HouseBankAccount,
  Persistence.stapl AS Chequebook
FROM pcec AS Persistence
;