P_SRVCQTANTRANSACTIONTYPE
Transaction Types for Service Quotations
P_SRVCQTANTRANSACTIONTYPE is a CDS View in S/4HANA. Transaction Types for Service Quotations. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| C_ServiceQuotationTypeVH | view | inner | CONSUMPTION | C view for service quotation type |
@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
}