I_SalesOrderType

DDL: I_SALESORDERTYPE SQL: ISDSALESORDERTP Type: view BASIC Package: VDM_SD_SLS_SO

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. It is exposed through 5 OData services (C_SALESORDERMANAGE_SD, UI_CREDITMEMOREQUESTMANAGE, UI_CUSTOMERRETURNMANAGE, ...). Part of development package VDM_SD_SLS_SO.

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (14)

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
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSALESORDERTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

OData Services (5)

ServiceBindingVersionContractRelease
C_SALESORDERMANAGE_SD C_SALESORDERMANAGE_SRV V4 C1 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED
UI_CUSTOMERRETURNMANAGE UI_CUSTOMERRETURNMANAGE V4 C1 NOT_RELEASED
UI_CUSTPROJSALESORDERMANAGE UI_CUSTPROJSALESORDERMANAGE V4 C1 NOT_RELEASED
UI_DEBITMEMOREQUESTMANAGE UI_DEBITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED

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, #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';