I_SalesQuotationType

DDL: I_SALESQUOTATIONTYPE SQL: ISDSLSQTANTP Type: view BASIC Package: VDM_SD_SLS_QUT

Sales Quotation Types

I_SalesQuotationType (Basic)

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

Sales Quotation Type · Sales

I_SalesQuotationType is a Basic CDS View (Dimension) that provides data about "Sales Quotation Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 2 fields with key field SalesQuotationType. Part of development package VDM_SD_SLS_QUT.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-SLS-QUT-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 SalesQuotationType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Sales Quotation Types view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDSLSQTANTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name SalesQuotationType view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SalesQuotationType Sales Quotation Type
_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_SalesQuotationType.
-- 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: ISDSLSQTANTP

CREATE VIEW I_SalesQuotationType AS
SELECT
  cast( SalesDocumentType as sales_quotation_type preserving type ) AS SalesQuotationType
FROM I_SalesDocumentType
;