I_ScrtyClassStockCategoryText

DDL: I_SCRTYCLASSSTOCKCATEGORYTEXT SQL: ISCRTYCLSTCATTXT Type: view BASIC

Security Class Stock Category - Text

I_ScrtyClassStockCategoryText (Basic)

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

Financial Operations

I_ScrtyClassStockCategoryText is a Basic CDS View that provides data about "Security Class Stock Category - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, SecurityClassStockCategory. It has 2 associations to related views.

SAP Help Documentation

CategorySecurity Class Stock Category
Data CategoryText
StatusReleased
Purpose
This CDS view provides access to the security class stock category text in different languages. This CDS view provides the prerequisites for answering the following business questions: Which name does a security class stock category have in a specific language?

Structure
Main CDS parameters and filters The main filters are: Language Key Measures and attributes Some important attributes are: Language key Securities class stock category Securities class stock category text

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-TRM
CapabilitiesData Source in SQL Select, Language-Dependent Text, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities
PackageFinancial Operations for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides access to the security class stock category text in different languages.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>Which name does a security class stock category have in a specific language?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_SecurityClassStockCategory _SecurityClassStockCategory $projection.SecurityClassStockCategory = _SecurityClassStockCategory.SecurityClassStockCategory
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
AbapCatalog.buffering.status #NOT_ALLOWED view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName ISCRTYCLSTCATTXT view
AccessControl.authorizationCheck #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Security Class Stock Category - Text view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey SecurityClassStockCategory view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Language Key
KEY SecurityClassStockCategory dd07t domvalue_l Values for Domains: Single Value/Lower Limit
SecurityClassStockCategoryName Name of the Stock Category
_SecurityClassStockCategory _SecurityClassStockCategory
_Language _Language

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_ScrtyClassStockCategoryText.
-- 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: ISCRTYCLSTCATTXT

CREATE VIEW I_ScrtyClassStockCategoryText AS
SELECT
  ddlanguage AS Language,
  dd07t.domvalue_l AS SecurityClassStockCategory,
  cast(dd07t.ddtext as ftr_gen_stock_category_name) AS SecurityClassStockCategoryName
FROM dd07t
LEFT OUTER JOIN I_SecurityClassStockCategory AS _SecurityClassStockCategory ON SecurityClassStockCategory = _SecurityClassStockCategory.SecurityClassStockCategory  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;