I_ServiceContractItemVH

DDL: I_SERVICECONTRACTITEMVH SQL: ISRVDOCITEMVH Type: view COMPOSITE

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)

SourceAliasJoin Type
I_AcctgServiceDocumentItem FcoSrvDoc inner
I_ServiceDocumentItemEnhcd ServiceDocumentItem from

Annotations (11)

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

KeyFieldSource TableSource FieldDescription
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":""
}
}*/