V_Vbfa_P3

DDL: V_VBFA_P3 SQL: V_VBFA_P3_CDS Type: view

Document Flow Predecessor on Path Level 3

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

Data Sources (2)

SourceAliasJoin Type
V_Vbfa_P2 v2 inner
vbfa v3 from

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName V_VBFA_P3_CDS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Document Flow Predecessor on Path Level 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_P2 root_vbeln
root_posnr V_Vbfa_P2 root_posnr
root_vbtyp V_Vbfa_P2 root_vbtyp
vbelv vbfa vbelv
posnv vbfa posnv
vbtyp_v vbfa vbtyp_v
vbeln vbfa vbeln
posnn vbfa posnn
vbtyp_n vbfa vbtyp_n
path_length
@AbapCatalog.sqlViewName: 'V_VBFA_P3_CDS'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Document Flow Predecessor on Path Level 3'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
@ClientHandling.algorithm: #SESSION_VARIABLE
define view V_Vbfa_P3
  as select from vbfa      as v3
    inner join   V_Vbfa_P2 as v2 on  v2.vbelv   = v3.vbeln
                                 and v2.posnv   = v3.posnn
                                 and v2.vbtyp_v = v3.vbtyp_n
{
  v2.root_vbeln,
  v2.root_posnr,
  v2.root_vbtyp,
  v3.vbelv,
  v3.posnv,
  v3.vbtyp_v,
  v3.vbeln,
  v3.posnn,
  v3.vbtyp_n,
  '03' as path_length
} 
  
  
  
 /*+[internal] {
"BASEINFO":
{
"FROM":
[
"V_VBFA_P2",
"VBFA"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/