P_SRVCTRANSACTIONTYPE

CDS View

Transaction Types with Inhouse Repair

P_SRVCTRANSACTIONTYPE is a CDS View in S/4HANA. Transaction Types with Inhouse Repair. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
C_ServiceOrderTypeVH view inner CONSUMPTION Service Order Type
@AbapCatalog.sqlViewName: 'PSRVCTRANSTYPE'
@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
}
define view P_SrvcTransactionType
  as select from I_ServiceOrderTypeVH as TransactionType

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

}