C_BSOrdProcFlwCustInvc

DDL: C_BSORDPROCFLWCUSTINVC Type: view CONSUMPTION

Customer Invoice Attrib for BSOrd Prgrs

C_BSOrdProcFlwCustInvc is a Consumption CDS View that provides data about "Customer Invoice Attrib for BSOrd Prgrs" in SAP S/4HANA. It reads from 1 data source (I_BillingDocument) and exposes 8 fields with key field UI5NetworkGraphAttributeValue. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_BillingDocument CustInvcHeader from

Associations (2)

CardinalityTargetAliasCondition
[0..1] P_BusSolnOrdSubsqntDocTypeText _DocumentType _DocumentType.UI5NetworkGraphDescription = 'M'
[0..1] E_BillingDocument _Extension _Extension.BillingDocument = CustInvcHeader.BillingDocument

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName CCUSTINVATTRIB view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #XL view
VDM.viewType #CONSUMPTION view
Metadata.allowExtensions true view
EndUserText.label Customer Invoice Attrib for BSOrd Prgrs view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY UI5NetworkGraphAttributeValue BillingDocument
TotalNetAmount TotalNetAmount
BillingDocumentDate BillingDocumentDate
CompanyCode CompanyCode
TransactionCurrency TransactionCurrency
UI5NetworkGraphStatusName
UI5NetworkGraphStatus
UI5NetworkGraphDescription
@AbapCatalog: {
    sqlViewName:            'CCUSTINVATTRIB',
    compiler.compareFilter: true,
    preserveKey:            true
}

@AccessControl.authorizationCheck: #PRIVILEGED_ONLY

@ClientHandling.algorithm: #SESSION_VARIABLE

@ObjectModel.usageType: {
    dataClass:      #MIXED,
    serviceQuality: #C,
    sizeCategory:   #XL
}

@VDM: {
    viewType: #CONSUMPTION
}
@Metadata.allowExtensions:true

@EndUserText.label: 'Customer Invoice Attrib for BSOrd Prgrs'

define view C_BSOrdProcFlwCustInvc
  as select from I_BillingDocument as CustInvcHeader
  association [0..1] to P_BusSolnOrdSubsqntDocTypeText as _DocumentType on _DocumentType.UI5NetworkGraphDescription = 'M'

  association [0..1] to E_BillingDocument              as _Extension    on _Extension.BillingDocument = CustInvcHeader.BillingDocument
{

  key BillingDocument                                                                              as UI5NetworkGraphAttributeValue,

      @Semantics.amount.currencyCode: 'TransactionCurrency'
      TotalNetAmount,
      BillingDocumentDate,

      CompanyCode,
      TransactionCurrency,

      _OverallBillingStatus._Text[1: Language = $session.system_language].OverallBillingStatusDesc as UI5NetworkGraphStatusName,
      cast (OverallBillingStatus as fac_network_graph_status)                                      as UI5NetworkGraphStatus,
      @Semantics.text: true
      _DocumentType[1: Language = $session.system_language].UI5NetworkGraphDescriptionName         as UI5NetworkGraphDescription
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BILLINGDOCUMENT",
"I_OVERALLBILLINGSTATUS",
"I_OVERALLBILLINGSTATUSTEXT",
"P_BUSSOLNORDSUBSQNTDOCTYPETEXT"
],
"ASSOCIATED":
[
"E_BILLINGDOCUMENT",
"P_BUSSOLNORDSUBSQNTDOCTYPETEXT"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/