I_SalesOrderType
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)
| Source | Alias | Join Type |
|---|---|---|
| I_SalesDocumentType | I_SalesDocumentType | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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';
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA