Fclm_Bkpf_Basic

DDL: FCLM_BKPF_BASIC SQL: VFCLMBKPFBS Type: view

Basic BKPF

Fclm_Bkpf_Basic is a CDS View that provides data about "Basic BKPF" in SAP S/4HANA. It reads from 1 data source (bkpf) and exposes 6 fields.

Data Sources (1)

SourceAliasJoin Type
bkpf bkpf from

Annotations (6)

NameValueLevelField
AbapCatalog.sqlViewName VFCLMBKPFBS view
EndUserText.label Basic BKPF view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (6)

KeyFieldSource TableSource FieldDescription
logsys
bukrs bukrs Value
gjahr gjahr Settlement Year
belnr belnr SD Document
bvorg bvorg Intercompany Transac
stblg stblg Reversed With

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 Fclm_Bkpf_Basic.
-- 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: VFCLMBKPFBS

CREATE VIEW Fclm_Bkpf_Basic AS
SELECT
  cast('' as logsys) AS logsys,
  bukrs,
  gjahr,
  belnr,
  bvorg,
  stblg
FROM bkpf
;