P_CN_CADEINCOMINGCHECK

DDL: P_CN_CADEINCOMINGCHECK SQL: PCADEINCGCHK Type: view BASIC

P_CN_CADEINCOMINGCHECK is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (febep) and exposes 8 fields with key fields StatementShortID, StatementItem.

Data Sources (1)

SourceAliasJoin Type
febep febep from

Annotations (10)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName PCADEINCGCHK view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
VDM.private true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY StatementShortID kukey Statement Short Key
KEY StatementItem esnum Memo Record No.
CompanyCode svbuk Company Code
BankLedgerDocument belnr SD Document
FiscalYear gjahr Settlement Year
SubledgerDocument nbbln Subl.Doc.No.
PostingDate budat Posting Date
Cheque chect Check 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 P_CN_CADEINCOMINGCHECK.
-- 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: PCADEINCGCHK

CREATE VIEW P_CN_CADEINCOMINGCHECK AS
SELECT
  kukey AS StatementShortID,
  esnum AS StatementItem,
  svbuk AS CompanyCode,
  belnr AS BankLedgerDocument,
  gjahr AS FiscalYear,
  nbbln AS SubledgerDocument,
  budat AS PostingDate,
  chect AS Cheque
FROM febep
;