I_SecurityClassQuotation

DDL: I_SECURITYCLASSQUOTATION SQL: ISCRTYCLQUOT Type: view BASIC

Security Class Quotation

I_SecurityClassQuotation (Basic)

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

Security Class Quotation · Financial Operations

I_SecurityClassQuotation is a Basic CDS View (Dimension) that provides data about "Security Class Quotation" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field SecurityClassQuotation. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for System Data
Data CategoryDimension
StatusReleased
Data Extraction TypeFull (physical deletions are possible in source tables) The data extracted relates to system settings that can be changed only when the product version or release is changed.
Corresponding DataSourceISCRTYCLQUOT
Purpose
This CDS view provides the prerequisites for answering the following business questions: Which kinds of quotation are available for security classes such as bonds and stocks?

Structure
Measures and attributes Some important attributes are: Security class quotation

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesAnalytical Dimension, Data Source in SQL Select, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities, Data Source for Data Extraction
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which kinds of quotation are available for security classes such as bonds and stocks?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_SecurityClassQuotationText _Text $projection.SecurityClassQuotation = _Text.SecurityClassQuotation

Annotations (19)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AbapCatalog.sqlViewName ISCRTYCLQUOT view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Security Class Quotation view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey SecurityClassQuotation view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.sapObjectNodeType.name SecurityClassQuotation view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY SecurityClassQuotation domvalue_l Values for Domains: Single Value/Lower Limit
_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_SecurityClassQuotation.
-- 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: ISCRTYCLQUOT

CREATE VIEW I_SecurityClassQuotation AS
SELECT
  domvalue_l AS SecurityClassQuotation
FROM dd07l
LEFT OUTER JOIN I_SecurityClassQuotationText AS _Text ON SecurityClassQuotation = _Text.SecurityClassQuotation  -- association [0..*]
;