v_Vbfa_S1

DDL: V_VBFA_S1 SQL: V_VBFA_S1_CDS Type: view

Document Flow Successor on Path Length 1

v_Vbfa_S1 is a CDS View that provides data about "Document Flow Successor on Path Length 1" in SAP S/4HANA. It reads from 1 data source (vbfa) and exposes 10 fields.

Data Sources (1)

SourceAliasJoin Type
vbfa vbfa from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_VBFA_S1_CDS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Document Flow Successor on Path Length 1 view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (10)

KeyFieldSource TableSource FieldDescription
root_vbeln vbelv Preceding Doc.
root_posnr posnv SettlmtRefDocItem
root_vbtyp vbtyp_v Prec.Doc.Categ.
vbelv vbelv Preceding Doc.
posnv posnv SettlmtRefDocItem
vbtyp_v vbtyp_v Prec.Doc.Categ.
vbeln vbeln SD Sched. Agmt
posnn posnn Subsequent Item
vbtyp_n vbtyp_n Subs.Doc.Categ.
path_length

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 v_Vbfa_S1.
-- 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: V_VBFA_S1_CDS

CREATE VIEW v_Vbfa_S1 AS
SELECT
  vbelv AS root_vbeln,
  posnv AS root_posnr,
  vbtyp_v AS root_vbtyp,
  vbelv,
  posnv,
  vbtyp_v,
  vbeln,
  posnn,
  vbtyp_n,
  '01' AS path_length
FROM vbfa
;