I_SalesDocumentStdVH

DDL: I_SALESDOCUMENTSTDVH SQL: ISDSLSDOCVH Type: view COMPOSITE

Sales Document

I_SalesDocumentStdVH (Composite)

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

Sales

I_SalesDocumentStdVH is a Composite CDS View that provides data about "Sales Document" in SAP S/4HANA. It reads from 1 data source (I_SalesDocument) and exposes 5 fields with key field SalesDocument.

SAP Help Documentation

CategorySD Documents and Sales Documents
StatusReleased
Purpose
This CDS view provides a value help for sales documents. It shall be used for value help purpose only. If you intend to select the entire business data, use the Sales Document view instead.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessSales
Application ComponentSD-SLS
CapabilitiesData Source for Search, Data Provider for Value Help
PackageSales for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides a value help for sales documents. It shall be used for value help purpose only. If you intend to select the entire business data, use the Sales Document view instead.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_SalesDocument I_SalesDocument from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISDSLSDOCVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SalesDocument view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Sales Document view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesDocument SalesDocument Sales Document
DistributionChannel DistributionChannel Distribution Channel
OrganizationDivision OrganizationDivision Org. Division
SalesDocumentType SalesDocumentType Sales Document Type
SalesOrganization SalesOrganization Sales Organization

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_SalesDocumentStdVH.
-- 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: ISDSLSDOCVH

CREATE VIEW I_SalesDocumentStdVH AS
SELECT
  SalesDocument,
  DistributionChannel,
  OrganizationDivision,
  SalesDocumentType,
  SalesOrganization
FROM I_SalesDocument
;