P_ServiceConfItmRefSrvcContr
Reference Service Contract of Service Confirmation Item
P_ServiceConfItmRefSrvcContr is a Composite CDS View that provides data about "Reference Service Contract of Service Confirmation Item" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentItemPrdcssr_2) and exposes 4 fields with key field ServiceConfirmationItemUUID.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_ServiceDocumentItemPrdcssr_2 | I_ServiceDocumentItemPrdcssr_2 | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Reference Service Contract of Service Confirmation Item | view | |
| VDM.private | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| VDM.lifecycle.contract.type | #NONE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| Metadata.ignorePropagatedAnnotations | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceConfirmationItemUUID | |||
| ReferenceServiceContract | _ServiceDocItm | ServiceDocument | ||
| ReferenceServiceContractItem | _ServiceDocItm | ServiceDocumentItem | ||
| ServiceDocumentItemObjectType | ServiceDocumentItemObjectType |
@EndUserText.label: 'Reference Service Contract of Service Confirmation Item'
@VDM: {
private: true,
viewType: #COMPOSITE,
lifecycle.contract.type: #NONE
}
@AccessControl: {
authorizationCheck: #CHECK,
personalData.blocking: #('TRANSACTIONAL_DATA')
}
@ObjectModel: {
usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #B,
sizeCategory: #L
}
}
@Metadata.ignorePropagatedAnnotations: true
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] } */
define view entity P_ServiceConfItmRefSrvcContr
as select from I_ServiceDocumentItemPrdcssr_2
{
key hextobin(ServiceDocumentItemCharUUID) as ServiceConfirmationItemUUID,
_ServiceDocItm.ServiceDocument as ReferenceServiceContract,
_ServiceDocItm.ServiceDocumentItem as ReferenceServiceContractItem,
// Added for access control
@Consumption.hidden: true
ServiceDocumentItemObjectType
}
where
_ServiceDocItm.ServiceObjectType = 'BUS2000112' // Service Contract
and ServiceDocumentItemObjectType like 'BUS2000%'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SERVICEDOCUMENTITEMENHCD",
"I_SERVICEDOCUMENTITEMPRDCSSR_2"
],
"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