C_BSQPMBusSolnQtan
BSQPM Solution Quotation Attribute
C_BSQPMBusSolnQtan is a Consumption CDS View that provides data about "BSQPM Solution Quotation Attribute" in SAP S/4HANA. It reads from 2 data sources (I_BusSolutionQuotationType, I_ServiceDocument) and exposes 6 fields with key field ServiceDocument. It has 1 association to related views.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_BusSolutionQuotationType | BusSolutionQuotationType | inner |
| I_ServiceDocument | SolutionQuotation | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | E_ServiceDocument | _Extension | _Extension.ServiceOrder = SolutionQuotation.ServiceDocument and _Extension.ServiceCategory = SolutionQuotation.ServiceObjectType |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | BSQPM Solution Quotation Attribute | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| VDM.viewType | #CONSUMPTION | view |
Fields (6)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocument | I_ServiceDocument | ServiceDocument | |
| SoldToParty | I_ServiceDocument | SoldToParty | ||
| ServiceDocNetAmount | I_ServiceDocument | ServiceDocNetAmount | ||
| TransactionCurrency | I_ServiceDocument | TransactionCurrency | ||
| ServiceDocumentStatus | I_ServiceDocument | ServiceDocumentStatus | ||
| ServiceDocumentStatusName |
@AbapCatalog.viewEnhancementCategory: [#PROJECTION_LIST]
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'BSQPM Solution Quotation Attribute'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #X,
sizeCategory: #XXL,
dataClass: #MIXED
}
@VDM.viewType: #CONSUMPTION
define view entity C_BSQPMBusSolnQtan
as select from I_ServiceDocument as SolutionQuotation
inner join I_BusSolutionQuotationType as BusSolutionQuotationType on BusSolutionQuotationType.BusSolutionQuotationType = SolutionQuotation.ServiceDocumentType
association [0..1] to E_ServiceDocument as _Extension on _Extension.ServiceOrder = SolutionQuotation.ServiceDocument
and _Extension.ServiceCategory = SolutionQuotation.ServiceObjectType
{
@UI.hidden: true
key SolutionQuotation.ServiceDocument,
//Sold-To-Party
SolutionQuotation.SoldToParty,
//Net Value
@Semantics: { amount : {currencyCode: 'TransactionCurrency'} }
SolutionQuotation.ServiceDocNetAmount,
@UI.hidden: true
SolutionQuotation.TransactionCurrency,
//Status
@ObjectModel.text.element: [ 'ServiceDocumentStatusName' ]
SolutionQuotation.ServiceDocumentStatus,
@UI.hidden: true
@Semantics.text: true
SolutionQuotation._SrvcDocLifecycleStatus._ServiceDocumentStatusText[1: Language=$session.system_language].ServiceDocumentStatusName
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_BUSSOLUTIONQUOTATIONTYPE",
"I_SERVICEDOCUMENT",
"I_SRVCDOCLIFECYCLESTATUS",
"I_SRVCDOCLIFECYCLESTATUSTEXT"
],
"ASSOCIATED":
[],
"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