I_SALESORDERTYPE

CDS View

Sales Order Types

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

CDS Views using this table (1)

ViewTypeJoinVDMDescription
I_SalesOrderTypeText view_entity inner BASIC Sales Order Type - Text

Fields (1)

KeyField CDS FieldsUsed in Views
KEY SalesOrderType SalesOrderType 1
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
    representativeKey: 'SalesOrderType',
    sapObjectNodeType.name: 'SalesOrderType',
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    supportedCapabilities: [ #ANALYTICAL_DIMENSION, #EXTRACTION_DATA_SOURCE, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
    modelingPattern: [ #ANALYTICAL_DIMENSION ]
}
@EndUserText.label: 'Sales Order Types'
@Analytics: {dataCategory: #DIMENSION,
             dataExtraction.enabled: true }

@VDM.viewType: #BASIC
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSALESORDERTP'
@Metadata.allowExtensions: true
@Metadata.ignorePropagatedAnnotations:true
// @AbapCatalog.buffering.status: #ACTIVE

// @AbapCatalog.buffering.type: #FULL


define view I_SalesOrderType
  as select from I_SalesDocumentType

{
      //key

      @ObjectModel.text.association: '_Text'
  key cast( SalesDocumentType as sales_order_type preserving type ) as SalesOrderType,
      SalesDocumentProcessingType as SalesOrderProcessingType,
      OrderTypeForBillingRequest,
      TradeComplianceIsActive,
      //association

      _Text,
      _OrderTypeForBillingRequest
}
where
  SDDocumentCategory = 'C';