I_SalesOrderType

DDL: I_SALESORDERTYPE SQL: ISDSALESORDERTP Type: view BASIC

Sales Order Types

I_SalesOrderType is a Basic CDS View (Dimension) that provides data about "Sales Order Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 6 fields with key field SalesOrderType.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (13)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SalesOrderType view
ObjectModel.sapObjectNodeType.name SalesOrderType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Order Types view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSALESORDERTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderType
SalesOrderProcessingType SalesDocumentProcessingType
OrderTypeForBillingRequest OrderTypeForBillingRequest
TradeComplianceIsActive TradeComplianceIsActive
_Text _Text
_OrderTypeForBillingRequest _OrderTypeForBillingRequest
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel:{
    representativeKey: 'SalesOrderType',
    sapObjectNodeType.name: 'SalesOrderType',
    usageType:{
        dataClass: #CUSTOMIZING,
        serviceQuality: #A,
        sizeCategory: #S
    },
    supportedCapabilities: [ #ANALYTICAL_DIMENSION, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE, #CDS_MODELING_DATA_SOURCE ],
    modelingPattern: [ #ANALYTICAL_DIMENSION ]
}
@EndUserText.label: 'Sales Order Types'
@Analytics: {dataCategory: #DIMENSION}
@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';                    
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SALESDOCUMENTTYPE"
],
"ASSOCIATED":
[
"I_SALESDOCUMENTTYPE",
"I_SALESDOCUMENTTYPETEXT"
],
"BASE":
[
"I_SALESDOCUMENTTYPE"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/