I_ServiceContractItemVH
Service Contract Item Value Help
I_ServiceContractItemVH is a Composite CDS View that provides data about "Service Contract Item Value Help" in SAP S/4HANA. It reads from 2 data sources (I_AcctgServiceDocumentItem, I_ServiceDocumentItemEnhcd) and exposes 11 fields with key fields ServiceObjectType, ServiceDocumentType, ServiceDocument, ServiceDocumentItem.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_AcctgServiceDocumentItem | FcoSrvDoc | inner |
| I_ServiceDocumentItemEnhcd | ServiceDocumentItem | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRVDOCITEMVH | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| Search.searchable | true | view | |
| EndUserText.label | Service Contract Item Value Help | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceObjectType | I_ServiceDocumentItemEnhcd | ServiceObjectType | |
| KEY | ServiceDocumentType | I_ServiceDocumentItemEnhcd | ServiceDocumentType | |
| KEY | ServiceDocument | I_ServiceDocumentItemEnhcd | ServiceDocument | |
| KEY | ServiceDocumentItem | I_ServiceDocumentItemEnhcd | ServiceDocumentItem | |
| ServiceDocumentDescription | I_ServiceDocumentItemEnhcd | ServiceDocumentDescription | ||
| Product | I_ServiceDocumentItemEnhcd | Product | ||
| ServiceDocumentItemDescription | I_ServiceDocumentItemEnhcd | ServiceDocumentItemDescription | ||
| clientNULLasServiceContractItemStartDate | Service Contract Item Start Date | |||
| clientNULLasServiceContractItemEndDate | Service Contract Item End Date | |||
| SoldToParty | I_ServiceDocumentItemEnhcd | SoldToParty | ||
| SalesOrganization | I_ServiceDocumentItemEnhcd | SalesOrganization |
@AbapCatalog.sqlViewName: 'ISRVDOCITEMVH'
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@ObjectModel: {
usageType: {
dataClass: #MIXED,
serviceQuality: #C,
sizeCategory: #XXL
}
}
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@Search.searchable: true
@EndUserText.label: 'Service Contract Item Value Help'
define view I_ServiceContractItemVH
as select from I_ServiceDocumentItemEnhcd as ServiceDocumentItem
inner join I_AcctgServiceDocumentItem as FcoSrvDoc on ServiceDocumentItem.ServiceDocumentType = FcoSrvDoc.ServiceDocumentType
and ServiceDocumentItem.ServiceDocument = FcoSrvDoc.ServiceDocument
and ServiceDocumentItem.ServiceDocumentItem = FcoSrvDoc.ServiceDocumentItem
{
@UI.hidden: true
key ServiceDocumentItem.ServiceObjectType,
@Search.defaultSearchElement: true
key ServiceDocumentItem.ServiceDocumentType,
key ServiceDocumentItem.ServiceDocument,
key ServiceDocumentItem.ServiceDocumentItem,
ServiceDocumentItem.ServiceDocumentDescription,
ServiceDocumentItem.Product,
ServiceDocumentItem.ServiceDocumentItemDescription,
@EndUserText.label: 'Service Contract Item Start Date'
tstmp_to_dats( ServiceDocumentItem.ServiceContrItemStartDateTime,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL' ) as ServiceContractItemStartDate,
@EndUserText.label: 'Service Contract Item End Date'
tstmp_to_dats( ServiceDocumentItem.ServiceContrItemEndDateTime,
abap_system_timezone( $session.client,'NULL' ),
$session.client,
'NULL' ) as ServiceContractItemEndDate,
ServiceDocumentItem.SoldToParty,
ServiceDocumentItem.SalesOrganization
}
where
ServiceDocumentItem.ServiceObjectType = 'BUS2000112'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ACCTGSERVICEDOCUMENTITEM",
"I_SERVICEDOCUMENTITEMENHCD"
],
"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