I_SalesContractStdVH

DDL: I_SALESCONTRACTSTDVH Type: view COMPOSITE

Sales Contract

I_SalesContractStdVH (Composite)

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

Sales

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

SAP Help Documentation

CategorySales Contracts
Purpose
This CDS view provides a value help for sales contracts. It shall be used for value help purposes only. If you intend to select the entire business data, use the Sales Contract view instead.

View on SAP Help Portal →

SAP API Hub

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

Documentation

Data Sources (1)

SourceAliasJoin Type
I_SalesContract I_SalesContract from

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISDSLSCONTRVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey SalesContract view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #CHECK view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Sales Contract view
Search.searchable true view
Consumption.ranked true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY SalesContract SalesContract Sales Document
DistributionChannel DistributionChannel Distribution Channel
OrganizationDivision OrganizationDivision Org. Division
SalesContractType SalesContractType Sales Contract 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_SalesContractStdVH.
-- 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.

CREATE VIEW I_SalesContractStdVH AS
SELECT
  SalesContract,
  DistributionChannel,
  OrganizationDivision,
  SalesContractType,
  SalesOrganization
FROM I_SalesContract
;