I_SalesOrderWithoutChargeType

DDL: I_SALESORDERWITHOUTCHARGETYPE SQL: ISDSOWTHOCHRGTP Type: view BASIC

Sales Order Without Charge Types

I_SalesOrderWithoutChargeType (Basic)

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

Sales Order Without Charge Type · Sales

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

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentSD-SLS-SO
CapabilitiesData Source for Data Extraction, Data Source in SQL Select, Analytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageSales for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (14)

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

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderWithoutChargeType Sales Order Without Charge Type
SalesOrderWthoutChrgProcgType SalesDocumentProcessingType Sales document indicator (for display in TVAK only)
_Text _Text

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_SalesOrderWithoutChargeType.
-- 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: ISDSOWTHOCHRGTP

CREATE VIEW I_SalesOrderWithoutChargeType AS
SELECT
  cast ( SalesDocumentType as sales_order_wthout_charge_type preserving type ) AS SalesOrderWithoutChargeType,
  SalesDocumentProcessingType AS SalesOrderWthoutChrgProcgType
FROM I_SalesDocumentType
;