I_ServiceOrderDocumentItemVH

DDL: I_SERVICEORDERDOCUMENTITEMVH SQL: ISRVDOCITMVH Type: view COMPOSITE

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.

Data Sources (1)

SourceAliasJoin Type
P_AcctgServiceDocumentItem _AcctgServiceDocumentItem from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_AcctgServiceDocumentTypeVH _AcctgServiceDocumentTypeVH $projection.ServiceDocumentType = _AcctgServiceDocumentTypeVH.ServiceDocumentType

Annotations (15)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PRODUCTTEXT",
"I_SERVICEDOCUMENTTYPE",
"P_ACCTGSERVICEDOCUMENTITEM"
],
"ASSOCIATED":
[
"I_ACCTGSERVICEDOCUMENTTYPEVH"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/