A_ServiceQtanPersonResp
Employee Responsible for Srvc Quotation
A_ServiceQtanPersonResp is a Composite CDS View that provides data about "Employee Responsible for Srvc Quotation" in SAP S/4HANA. It reads from 1 data source (I_CustMgmtPartner) and exposes 3 fields with key fields ServiceQuotation, PersonResponsible. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CustMgmtPartner | I_CustMgmtPartner | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1] | A_ServiceQuotation | _ServiceQuotation | $projection.ServiceQuotation = _ServiceQuotation.ServiceQuotation |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | Employee Responsible for Srvc Quotation | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #PUBLIC_REMOTE_API | view | |
| AbapCatalog.sqlViewName | ASRVQTANPERRESP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.createEnabled | true | view | |
| ObjectModel.updateEnabled | true | view | |
| ObjectModel.deleteEnabled | true | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| AbapCatalog.preserveKey | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceQuotation | CustMgmtDocument | ||
| KEY | PersonResponsible | CustMgmtBusinessPartner | ||
| _ServiceQuotation | _ServiceQuotation |
@ClientHandling.algorithm:#SESSION_VARIABLE
@EndUserText.label: 'Employee Responsible for Srvc Quotation'
@VDM: {
viewType: #COMPOSITE,
lifecycle.contract.type: #PUBLIC_REMOTE_API
}
@AbapCatalog: {
sqlViewName: 'ASRVQTANPERRESP',
compiler.compareFilter: true
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
createEnabled: true,
updateEnabled: true,
deleteEnabled: true,
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
@AbapCatalog.preserveKey:true
define view A_ServiceQtanPersonResp
as select from I_CustMgmtPartner
association [1] to A_ServiceQuotation as _ServiceQuotation on $projection.ServiceQuotation = _ServiceQuotation.ServiceQuotation
{
key CustMgmtDocument as ServiceQuotation,
key CustMgmtBusinessPartner as PersonResponsible,
//Associations
_ServiceQuotation
}
where
CustMgmtObjectType = 'BUS2000116'
and CustMgmtDocumentItem is initial
and CustMgmtPartFunctionCategory = '0008'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_CUSTMGMTPARTNER"
],
"ASSOCIATED":
[
"A_SERVICEQUOTATION"
],
"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