A_ServiceDocumentType

DDL: A_SERVICEDOCUMENTTYPE Type: view COMPOSITE

Service Transaction Type

A_ServiceDocumentType is a Composite CDS View that provides data about "Service Transaction Type" in SAP S/4HANA. It reads from 1 data source (I_ServiceDocumentType) and exposes 5 fields with key field ServiceDocumentType. It has 1 association to related views. It is exposed through 1 OData service (API_SERVICEDOCUMENTTYPE).

Data Sources (1)

SourceAliasJoin Type
I_ServiceDocumentType I_ServiceDocumentType from

Associations (1)

CardinalityTargetAliasCondition
[1..*] A_ServiceDocumentTypeText _ServiceDocumentTypeText $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ASERVDOCTYPE view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Service Transaction Type view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey ServiceDocumentType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
OData.entityType.name ServiceDocumentType_Type view
Search.searchable true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
VDM.viewType #COMPOSITE view

OData Services (1)

ServiceBindingVersionContractRelease
API_SERVICEDOCUMENTTYPE API_SRVCDOCUMENTTYPE V4 C2 C1

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType ServiceDocumentType
ServiceObjectType ServiceObjectType
BusinessObjectTypeName
ServiceDocumentTypeName
_ServiceDocumentTypeText _ServiceDocumentTypeText
@AbapCatalog:{
   sqlViewName: 'ASERVDOCTYPE',
   compiler.compareFilter: true,
   preserveKey: true }

@AccessControl.authorizationCheck: #CHECK

@EndUserText.label: 'Service Transaction Type'

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@ObjectModel:{
   representativeKey: 'ServiceDocumentType',
   usageType:{
     serviceQuality: #A,
     dataClass: #CUSTOMIZING,
     sizeCategory: #S } }

@OData.entityType.name:'ServiceDocumentType_Type'
@Search.searchable: true

@VDM.lifecycle.contract.type: #PUBLIC_REMOTE_API
@VDM.viewType: #COMPOSITE

define view A_ServiceDocumentType
  as select from I_ServiceDocumentType
  association [1..*] to A_ServiceDocumentTypeText as _ServiceDocumentTypeText on $projection.ServiceDocumentType = _ServiceDocumentTypeText.ServiceDocumentType
{
      @ObjectModel.sapObjectNodeTypeReference: 'ServiceDocumentType'
      @ObjectModel.text.element: ['ServiceDocumentTypeName']
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
  key ServiceDocumentType,
      @ObjectModel.text.element: ['BusinessObjectTypeName']
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      ServiceObjectType,
      @Search.defaultSearchElement: true
      @Search.ranking: #HIGH
      @Semantics.text: true
      _ServiceObjectTypeText[1:Language=$session.system_language].BusinessObjectTypeName,
      @Search.defaultSearchElement: true
      @Search.fuzzinessThreshold: 0.8
      @Semantics.text: true
      _ServiceDocumentTypeText[1:Language=$session.system_language].ServiceDocumentTypeName,
      /* Associations */
      _ServiceDocumentTypeText
}