I_SalesOrderType

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

Sales Order Types

I_SalesOrderType (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Sales Order Type · Sales

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 10 OData services (ASQL_F0333A, ASQL_F1810, ASQL_F2242, ...). Part of development package VDM_SD_SLS_SO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-SLS-SO-2CL
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Analytical Dimension,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition

Documentation

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 (10)

ServiceBindingVersionContractRelease
ASQL_F0333A ASQL_F0333A C2 NOT_RELEASED
ASQL_F1810 ASQL_F1810 C2 NOT_RELEASED
ASQL_F2242 ASQL_F2242 C2 NOT_RELEASED
ASQL_F2964 ASQL_F2964 C2 NOT_RELEASED
ASQL_F3417 ASQL_F3417 C2 NOT_RELEASED
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 Sales Order Type
SalesOrderProcessingType SalesDocumentProcessingType Sales document indicator (for display in TVAK only)
OrderTypeForBillingRequest OrderTypeForBillingRequest Order type for request for billing
TradeComplianceIsActive TradeComplianceIsActive Trade Compliance is active
_Text _Text
_OrderTypeForBillingRequest _OrderTypeForBillingRequest

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_SalesOrderType.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: ISDSALESORDERTP

CREATE VIEW I_SalesOrderType AS
SELECT
  cast( SalesDocumentType as sales_order_type preserving type ) AS SalesOrderType,
  SalesDocumentProcessingType AS SalesOrderProcessingType,
  OrderTypeForBillingRequest,
  TradeComplianceIsActive
FROM I_SalesDocumentType
;