I_SalesContractType

DDL: I_SALESCONTRACTTYPE SQL: ISDSLSCONTRTP Type: view BASIC Package: VDM_SD_SLS_OA_CCO

Sales Contract Types

I_SalesContractType (Basic)

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

Sales Contract Type · Sales

I_SalesContractType is a Basic CDS View (Dimension) that provides data about "Sales Contract Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 3 fields with key field SalesContractType. Part of development package VDM_SD_SLS_OA_CCO.

SAP Help Documentation

CategorySales Contracts
Data CategoryDimension
Purpose
This CDS view retrieves the type of a sales contract. To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Further Important Fields Important fields in this view include the following: Field Name Description SalesContractType (key) Sales Contract Type

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-SLS-OA-CCO-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities,Data Source in SQL Select,Analytical Dimension
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the type of a sales contract.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey SalesContractType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
EndUserText.label Sales Contract Types view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSLSCONTRTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name SalesContractType view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SalesContractType Sales Contract Type
ScreenSequenceGroup ScreenSequenceGroup Screen sequence group for document header & item
_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_SalesContractType.
-- 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: ISDSLSCONTRTP

CREATE VIEW I_SalesContractType AS
SELECT
  cast ( SalesDocumentType as sales_contract_type preserving type ) AS SalesContractType,
  ScreenSequenceGroup
FROM I_SalesDocumentType
;