P_SrvcQtanTransactionType

DDL: P_SRVCQTANTRANSACTIONTYPE SQL: PSRVCQTANTRANSTY Type: view COMPOSITE

Transaction Types for Service Quotations

P_SrvcQtanTransactionType is a Composite CDS View that provides data about "Transaction Types for Service Quotations" in SAP S/4HANA. It reads from 1 data source (I_ServiceQuotationType) and exposes 3 fields with key field ServiceDocumentType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_ServiceQuotationType TransactionType from

Associations (1)

CardinalityTargetAliasCondition
[1..*] P_SrvcInhRepairCopyControl _InHouseRepairTransactionType _InHouseRepairTransactionType.SrvcTargetTransactionType = $projection.ServiceDocumentType

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName PSRVCQTANTRANSTY view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
VDM.private true view
EndUserText.label Transaction Types for Service Quotations view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceDocumentType I_ServiceQuotationType ServiceDocumentType
ServiceObjectType I_ServiceQuotationType ServiceObjectType
RefInHouseRepairIsExisting _InHouseRepairTransactionType RefInHouseRepairIsExisting
@AbapCatalog.sqlViewName: 'PSRVCQTANTRANSTY'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.resultSet.sizeCategory: #XS
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM: {
    viewType: #COMPOSITE,
    private: true
}
@EndUserText.label: 'Transaction Types for Service Quotations'
define view P_SrvcQtanTransactionType as select from I_ServiceQuotationType as TransactionType

  association [1..*] to P_SrvcInhRepairCopyControl as _InHouseRepairTransactionType on _InHouseRepairTransactionType.SrvcTargetTransactionType = $projection.ServiceDocumentType
{
  key TransactionType.ServiceDocumentType,
      TransactionType.ServiceObjectType,
      _InHouseRepairTransactionType.RefInHouseRepairIsExisting as RefInHouseRepairIsExisting

}