R_SrvcQtanPartnerTP
Service Quotation Partner - TP
R_SrvcQtanPartnerTP is a Transactional CDS View that provides data about "Service Quotation Partner - TP" in SAP S/4HANA. It reads from 1 data source (I_CustMgmtPartner) and exposes 7 fields with key fields ServiceQuotation, CustMgmtPartnerFunction, CustMgmtBusinessPartner. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustMgmtPartner | I_CustMgmtPartner | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CustMgmtPartnerFuncText | _PartnerFunction | $projection.CustMgmtPartnerFunction = _PartnerFunction.PartnerFunction and _PartnerFunction.Language = $session.system_language |
| [0..1] | I_BusinessPartner | _BusinessPartner | $projection.CustMgmtBusinessPartner = _BusinessPartner.BusinessPartner |
Annotations (8)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| EndUserText.label | Service Quotation Partner - TP | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view |
Fields (7)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceQuotation | CustMgmtDocument | ||
| KEY | CustMgmtPartnerFunction | CustMgmtPartnerFunction | ||
| KEY | CustMgmtBusinessPartner | CustMgmtBusinessPartner | ||
| CustMgmtPartFunctionCategory | CustMgmtPartFunctionCategory | |||
| _PartnerFunction | _PartnerFunction | |||
| _BusinessPartner | _BusinessPartner | |||
| _ServiceQuotationTP | _ServiceQuotationTP |
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@VDM: {
viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Metadata:
{
ignorePropagatedAnnotations: true
}
@EndUserText.label: 'Service Quotation Partner - TP'
@ObjectModel: {
usageType: {dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L}
}
define view entity R_SrvcQtanPartnerTP
as select from I_CustMgmtPartner
association to parent R_ServiceQuotationTP as _ServiceQuotationTP on $projection.ServiceQuotation = _ServiceQuotationTP.ServiceQuotation
association [0..1] to I_CustMgmtPartnerFuncText as _PartnerFunction on $projection.CustMgmtPartnerFunction = _PartnerFunction.PartnerFunction
and _PartnerFunction.Language = $session.system_language
association [0..1] to I_BusinessPartner as _BusinessPartner on $projection.CustMgmtBusinessPartner = _BusinessPartner.BusinessPartner
{
@ObjectModel.foreignKey.association: '_ServiceQuotationTP'
key CustMgmtDocument as ServiceQuotation,
key CustMgmtPartnerFunction,
key CustMgmtBusinessPartner,
CustMgmtPartFunctionCategory,
//Association
_PartnerFunction,
_BusinessPartner,
_ServiceQuotationTP
}
where
CustMgmtObjectType = 'BUS2000116' // Service Process
and CustMgmtDocumentItem is initial
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTMGMTPARTNER"
],
"ASSOCIATED":
[
"I_BUSINESSPARTNER",
"I_CUSTMGMTPARTNERFUNCTEXT",
"R_SERVICEQUOTATIONTP"
],
"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