C_BSOrdProcFlwCustInvc
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)
| Source | Alias | Join Type |
|---|---|---|
| I_BillingDocument | CustInvcHeader | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | P_BusSolnOrdSubsqntDocTypeText | _DocumentType | _DocumentType.UI5NetworkGraphDescription = 'M' |
| [0..1] | E_BillingDocument | _Extension | _Extension.BillingDocument = CustInvcHeader.BillingDocument |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA