I_ServiceOrderDocumentItemVH
Service Order Document Item ID
I_ServiceOrderDocumentItemVH is a Composite CDS View that provides data about "Service Order Document Item ID" in SAP S/4HANA. It reads from 1 data source (P_AcctgServiceDocumentItem) and exposes 15 fields with key fields ServiceDocumentType, ServiceDocument, ServiceDocumentItem. It has 1 association to related views. Part of development package K_SERVICE_DOC_CORE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| P_AcctgServiceDocumentItem | _AcctgServiceDocumentItem | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_AcctgServiceDocumentTypeVH | _AcctgServiceDocumentTypeVH | $projection.ServiceDocumentType = _AcctgServiceDocumentTypeVH.ServiceDocumentType |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISRVDOCITMVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| ObjectModel.representativeKey | ServiceDocumentItem | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #NOT_REQUIRED | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Service Order Document Item ID | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ServiceDocumentType | P_AcctgServiceDocumentItem | ServiceDocumentType | |
| KEY | ServiceDocument | ServiceDocument | ||
| KEY | ServiceDocumentItem | ServiceDocumentItem | ||
| CompanyCode | CompanyCode | |||
| ProfitCenter | ProfitCenter | |||
| ServiceDocumentTypeName | ServiceDocumentTypeName | |||
| ServiceDocumentDescription | ServiceDocumentDescription | |||
| ServiceDocItemCategory | ServiceDocItemCategory | |||
| ServiceDocItemCategoryName | ServiceDocItemCategoryName | |||
| ServiceDocumentItemDescription | ServiceDocumentItemDescription | |||
| OriginallyRequestedProduct | OriginallyRequestedProduct | |||
| ProductName | ||||
| PostingDate | PostingDate | |||
| SrvcOrderConfirmationRelevance | SrvcOrderConfirmationRelevance | |||
| _AcctgServiceDocumentTypeVH | _AcctgServiceDocumentTypeVH |
@AbapCatalog.sqlViewName: 'ISRVDOCITMVH'
@AbapCatalog.compiler.compareFilter:true
@AbapCatalog.preserveKey:true
@ObjectModel.representativeKey: 'ServiceDocumentItem'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType: {
dataClass: #TRANSACTIONAL,
serviceQuality: #C,
sizeCategory: #L
}
@ObjectModel.semanticKey: ['ServiceDocumentType', 'ServiceDocument', 'ServiceDocumentItem']
@ObjectModel.dataCategory: #VALUE_HELP
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #NOT_REQUIRED
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'Service Order Document Item ID'
define view I_ServiceOrderDocumentItemVH
as select from P_AcctgServiceDocumentItem as _AcctgServiceDocumentItem
join I_ServiceDocumentType as _SERVICEDOCUMENTTYPE on _AcctgServiceDocumentItem.ServiceDocumentType = _SERVICEDOCUMENTTYPE.ServiceDocumentType
association [1..1] to I_AcctgServiceDocumentTypeVH as _AcctgServiceDocumentTypeVH on $projection.ServiceDocumentType = _AcctgServiceDocumentTypeVH.ServiceDocumentType
{
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@Consumption.valueHelp: '_AcctgServiceDocumentTypeVH'
@UI.lineItem: [{importance: #HIGH}]
key _AcctgServiceDocumentItem.ServiceDocumentType,
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8 }
@UI.lineItem: [{importance: #HIGH}]
key ServiceDocument,
@Search: { defaultSearchElement: true, ranking: #MEDIUM, fuzzinessThreshold: 0.8 }
@UI.lineItem: [{importance: #HIGH}]
key ServiceDocumentItem,
//ControllingObject,
@UI.lineItem: [{importance: #HIGH}]
CompanyCode,
//ControllingArea,
@UI.lineItem: [{importance: #HIGH}]
ProfitCenter,
//FunctionalArea,
//ResultAnalysisInternalID,
//Currency
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
@UI.lineItem: [{importance: #HIGH}]
ServiceDocumentTypeName,
//ProfitCenterName,
@Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
@UI.lineItem: [{importance: #HIGH}]
ServiceDocumentDescription,
ServiceDocItemCategory,
ServiceDocItemCategoryName,
// @Search: { defaultSearchElement: true, ranking: #LOW, fuzzinessThreshold: 0.8 }
@UI.lineItem: [{importance: #HIGH}]
ServiceDocumentItemDescription,
@UI.lineItem: [{importance: #HIGH}]
OriginallyRequestedProduct,
_ProductText[1: Language = $session.system_language].ProductName as ProductName,
PostingDate,
@Consumption.hidden: true
SrvcOrderConfirmationRelevance,
@Consumption.hidden: true
_AcctgServiceDocumentTypeVH
} where _SERVICEDOCUMENTTYPE.ServiceObjectType = 'BUS2000116'
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