I_SALESQUOTATIONTYPE

CDS View

Sales Quotation Types

I_SALESQUOTATIONTYPE is a CDS View in S/4HANA. Sales Quotation Types. It contains 1 fields. 1 CDS views read from this table.

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SalesQuotationTypeText view_entity inner BASIC Sales Quotation Type - Text

Fields (1)

KeyField CDS FieldsUsed in Views
KEY SalesQuotationType SalesQuotationType 1
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'SalesQuotationType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION, #EXTRACTION_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ]
@ObjectModel.modelingPattern: [ #ANALYTICAL_DIMENSION ]
@EndUserText.label: 'Sales Quotation Types'
@Analytics: {dataCategory: #DIMENSION,
             dataExtraction.enabled: true }
@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSLSQTANTP'
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true
// @AbapCatalog.buffering.status: #ACTIVE

// @AbapCatalog.buffering.type: #FULL

@ObjectModel.sapObjectNodeType.name:'SalesQuotationType'

define view I_SalesQuotationType 
as select from I_SalesDocumentType

{   
    //key

    @ObjectModel.text.association: '_Text'
    key cast( SalesDocumentType as sales_quotation_type preserving type ) as SalesQuotationType,
    
    //association 

    _Text
}
where SDDocumentCategory = 'B';