v_Vbfa_s3

DDL: V_VBFA_S3 SQL: V_VBFA_S3_CDS Type: view

Document Flow Successor on Path Length 3

v_Vbfa_s3 is a CDS View that provides data about "Document Flow Successor on Path Length 3" in SAP S/4HANA. It reads from 2 data sources (v_Vbfa_s2, vbfa) and exposes 10 fields.

Data Sources (2)

SourceAliasJoin Type
v_Vbfa_s2 v2 inner
vbfa v3 from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_VBFA_S3_CDS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Document Flow Successor on Path Length 3 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 v_Vbfa_s2 root_vbeln
root_posnr v_Vbfa_s2 root_posnr
root_vbtyp v_Vbfa_s2 root_vbtyp
vbelv vbfa vbelv Preceding Doc.
posnv vbfa posnv SettlmtRefDocItem
vbtyp_v vbfa vbtyp_v Prec.Doc.Categ.
vbeln vbfa vbeln SD Sched. Agmt
posnn vbfa posnn Subsequent Item
vbtyp_n vbfa 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_s3.
-- 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_S3_CDS

CREATE VIEW v_Vbfa_s3 AS
SELECT
  v2.root_vbeln AS root_vbeln,
  v2.root_posnr AS root_posnr,
  v2.root_vbtyp AS root_vbtyp,
  v3.vbelv AS vbelv,
  v3.posnv AS posnv,
  v3.vbtyp_v AS vbtyp_v,
  v3.vbeln AS vbeln,
  v3.posnn AS posnn,
  v3.vbtyp_n AS vbtyp_n,
  '03' AS path_length
FROM vbfa AS v3
INNER JOIN v_Vbfa_s2 AS v2 ON /* join condition not captured in parsed metadata */
;